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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Parsel with Swift 6.0 for watchOS using Xcode 16.0.

Swift 6 data race errors: 99

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Parsel -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: annotate 'char' with '@MainActor' if property should only be accessed from the main actor
    public static let char = Parser<String, Character> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let char = Parser<String, Character> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: warning: static property 'asciiChar' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiChar = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: annotate 'asciiChar' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiChar = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiChar = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: warning: static property 'asciiString' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: annotate 'asciiString' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: warning: static property 'lowercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lowercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: annotate 'lowercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: warning: static property 'uppercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let uppercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: annotate 'uppercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: warning: static property 'letter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: annotate 'letter' with '@MainActor' if property should only be accessed from the main actor
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit = Parser<String, Int> { input in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: annotate 'digit' with '@MainActor' if property should only be accessed from the main actor
    public static let digit = Parser<String, Int> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit = Parser<String, Int> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: annotate 'binaryDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: warning: static property 'binaryNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: annotate 'binaryNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: annotate 'octalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let octalDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: warning: static property 'octalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: annotate 'octalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: warning: static property 'hexadecimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: annotate 'hexadecimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: warning: static property 'decimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: annotate 'decimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: warning: static property 'unsignedNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: annotate 'unsignedNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: warning: static property 'minus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minus = char("-")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: annotate 'minus' with '@MainActor' if property should only be accessed from the main actor
    public static let minus = char("-")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minus = char("-")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: warning: static property 'floatingNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Double>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: annotate 'floatingNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: warning: static property 'plus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let plus = char("+")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: annotate 'plus' with '@MainActor' if property should only be accessed from the main actor
    public static let plus = char("+")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let plus = char("+")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let multiply = char("*")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: annotate 'multiply' with '@MainActor' if property should only be accessed from the main actor
    public static let multiply = char("*")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let multiply = char("*")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let divide = char("/")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: annotate 'divide' with '@MainActor' if property should only be accessed from the main actor
    public static let divide = char("/")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let divide = char("/")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: warning: static property 'assign' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let assign = char("=")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: annotate 'assign' with '@MainActor' if property should only be accessed from the main actor
    public static let assign = char("=")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let assign = char("=")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: warning: static property 'equal' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: annotate 'equal' with '@MainActor' if property should only be accessed from the main actor
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let space = char(" ")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: annotate 'space' with '@MainActor' if property should only be accessed from the main actor
    public static let space = char(" ")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let space = char(" ")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let newLine = char("\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: annotate 'newLine' with '@MainActor' if property should only be accessed from the main actor
    public static let newLine = char("\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let newLine = char("\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: warning: static property 'carriageReturn' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let carriageReturn = char("\r\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: annotate 'carriageReturn' with '@MainActor' if property should only be accessed from the main actor
    public static let carriageReturn = char("\r\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let carriageReturn = char("\r\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tab = char("\t")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: annotate 'tab' with '@MainActor' if property should only be accessed from the main actor
    public static let tab = char("\t")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tab = char("\t")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: warning: static property 'oneWhitespace' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: annotate 'oneWhitespace' with '@MainActor' if property should only be accessed from the main actor
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: warning: static property 'whitespaces' is not concurrency-safe because non-'Sendable' type 'Parser<String, [Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: annotate 'whitespaces' with '@MainActor' if property should only be accessed from the main actor
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftmodule (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftdoc (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.abi.json (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/armv7k-apple-watchos.abi.json
SwiftDriverJobDiscovery normal armv7k Compiling ParseResult.swift (in target 'Parsel' from project 'Parsel')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftsourceinfo (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators+Sequential.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.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/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parser+Conjunction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ RegexParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/RegexParser.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: warning: static property 'mail' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let mail = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: note: annotate 'mail' with '@MainActor' if property should only be accessed from the main actor
    public static let mail = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let mail = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: warning: static property 'httpAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let httpAddress = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: note: annotate 'httpAddress' with '@MainActor' if property should only be accessed from the main actor
    public static let httpAddress = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let httpAddress = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: warning: static property 'ipAddress' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ipAddress = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: note: annotate 'ipAddress' with '@MainActor' if property should only be accessed from the main actor
    public static let ipAddress = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ipAddress = """
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: warning: static property 'semver' is not concurrency-safe because non-'Sendable' type 'RegexParser' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let semver = """
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:15:20: note: class 'RegexParser' does not conform to the 'Sendable' protocol
public final class RegexParser: Parser<String, String> {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: note: annotate 'semver' with '@MainActor' if property should only be accessed from the main actor
    public static let semver = """
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let semver = """
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Parser.swift (in target 'Parsel' from project 'Parsel')
SwiftCompile normal armv7k Compiling\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Operators.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
SwiftCompile normal armv7k Compiling\ Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Lexical.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: warning: static property 'char' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let char = Parser<String, Character> { input in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: annotate 'char' with '@MainActor' if property should only be accessed from the main actor
    public static let char = Parser<String, Character> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let char = Parser<String, Character> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: warning: static property 'asciiChar' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiChar = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: annotate 'asciiChar' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiChar = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiChar = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: warning: static property 'asciiString' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: annotate 'asciiString' with '@MainActor' if property should only be accessed from the main actor
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let asciiString = asciiChar.atLeastOne ^^ { String($0) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: warning: static property 'lowercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lowercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: annotate 'lowercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lowercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: warning: static property 'uppercaseLetter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let uppercaseLetter = char.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: annotate 'uppercaseLetter' with '@MainActor' if property should only be accessed from the main actor
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let uppercaseLetter = char.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: warning: static property 'letter' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: annotate 'letter' with '@MainActor' if property should only be accessed from the main actor
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let letter = (lowercaseLetter | uppercaseLetter).mapError { err in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit = Parser<String, Int> { input in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: annotate 'digit' with '@MainActor' if property should only be accessed from the main actor
    public static let digit = Parser<String, Int> { input in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit = Parser<String, Int> { input in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: warning: static property 'binaryDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: annotate 'binaryDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: warning: static property 'binaryNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: annotate 'binaryNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let binaryNumber = (string("0b") ~> binaryDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: warning: static property 'octalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalDigit = digit.filter { parsed in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: annotate 'octalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let octalDigit = digit.filter { parsed in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalDigit = digit.filter { parsed in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: warning: static property 'octalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: annotate 'octalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let octalNumber = (string("0o") ~> octalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: warning: static property 'hexadecimalDigit' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: annotate 'hexadecimalDigit' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalDigit = char.map { parsed -> Int in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: warning: static property 'hexadecimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: annotate 'hexadecimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:181:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hexadecimalNumber = ((string("0x") | string("0X")) ~> hexadecimalDigit.atLeastOne) ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: warning: static property 'decimalNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: annotate 'decimalNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:186:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let decimalNumber = digit.atLeastOne ^^ { digits in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: warning: static property 'unsignedNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: annotate 'unsignedNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let unsignedNumber = hexadecimalNumber | octalNumber | binaryNumber | decimalNumber
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'Parser<String, Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: annotate 'number' with '@MainActor' if property should only be accessed from the main actor
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:194:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let number = L.minus.optional ~ unsignedNumber ^^ { minus, number in minus == nil ? number : number * -1 }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: warning: static property 'minus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minus = char("-")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: annotate 'minus' with '@MainActor' if property should only be accessed from the main actor
    public static let minus = char("-")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:208:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minus = char("-")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: warning: static property 'floatingNumber' is not concurrency-safe because non-'Sendable' type 'Parser<String, Double>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: annotate 'floatingNumber' with '@MainActor' if property should only be accessed from the main actor
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let floatingNumber = "[0-9]+([\\.,][0-9]+)?".r ^^ { input -> Double in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: warning: static property 'plus' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let plus = char("+")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: annotate 'plus' with '@MainActor' if property should only be accessed from the main actor
    public static let plus = char("+")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:205:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let plus = char("+")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let multiply = char("*")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: annotate 'multiply' with '@MainActor' if property should only be accessed from the main actor
    public static let multiply = char("*")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:211:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let multiply = char("*")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let divide = char("/")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: annotate 'divide' with '@MainActor' if property should only be accessed from the main actor
    public static let divide = char("/")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:214:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let divide = char("/")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: warning: static property 'assign' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let assign = char("=")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: annotate 'assign' with '@MainActor' if property should only be accessed from the main actor
    public static let assign = char("=")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:217:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let assign = char("=")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: warning: static property 'equal' is not concurrency-safe because non-'Sendable' type 'Parser<String, String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: annotate 'equal' with '@MainActor' if property should only be accessed from the main actor
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:220:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let equal = (assign ~ assign) ^^ { String([$0, $1]) }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let space = char(" ")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: annotate 'space' with '@MainActor' if property should only be accessed from the main actor
    public static let space = char(" ")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:225:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let space = char(" ")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let newLine = char("\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: annotate 'newLine' with '@MainActor' if property should only be accessed from the main actor
    public static let newLine = char("\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:228:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let newLine = char("\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: warning: static property 'carriageReturn' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let carriageReturn = char("\r\n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: annotate 'carriageReturn' with '@MainActor' if property should only be accessed from the main actor
    public static let carriageReturn = char("\r\n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:231:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let carriageReturn = char("\r\n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tab = char("\t")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: annotate 'tab' with '@MainActor' if property should only be accessed from the main actor
    public static let tab = char("\t")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:234:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tab = char("\t")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: warning: static property 'oneWhitespace' is not concurrency-safe because non-'Sendable' type 'Parser<String, Character>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: annotate 'oneWhitespace' with '@MainActor' if property should only be accessed from the main actor
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:237:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let oneWhitespace = space | newLine | carriageReturn | tab
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: warning: static property 'whitespaces' is not concurrency-safe because non-'Sendable' type 'Parser<String, [Character]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift:9:12: note: generic class 'Parser' does not conform to the 'Sendable' protocol
open class Parser<T, R> where T: Sequence {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: annotate 'whitespaces' with '@MainActor' if property should only be accessed from the main actor
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift:240:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let whitespaces = oneWhitespace.atLeastOne
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling RegexParser.swift (in target 'Parsel' from project 'Parsel')
SwiftCompile normal arm64 Compiling\ ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.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/Sources/Parsel/Core/ParseResult.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/ParseResult.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling Operators.swift (in target 'Parsel' from project 'Parsel')
SwiftCompile normal armv7k Compiling\ Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Errors.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling Lexical.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Emitting module for Parsel (in target 'Parsel' from project 'Parsel')
SwiftCompile normal armv7k Compiling\ Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators+Sequential.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/ParseResult.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser+Conjunction.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Core/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/Lexical.swift /Users/admin/builder/spi-builder-workspace/Sources/Parsel/RegexParser.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 4 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Parsel -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.o -index-unit-output-path /Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parser+Conjunction.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling Errors.swift (in target 'Parsel' from project 'Parsel')
SwiftDriver\ Compilation\ Requirements Parsel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Parsel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.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 -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Parsel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel-Swift.h (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Parsel-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftdoc (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.abi.json (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftsourceinfo (in target 'Parsel' from project 'Parsel')
    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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriver\ Compilation Parsel normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Parsel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.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 -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel-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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Binary/Parsel.o normal arm64_32 (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Parsel_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Binary/Parsel.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Binary/Parsel.o normal armv7k (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Parsel_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Binary/Parsel.o
SwiftDriverJobDiscovery normal arm64 Compiling Operators.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Errors.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Parser+Conjunction.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling ParseResult.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Lexical.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling Operators+Sequential.swift (in target 'Parsel' from project 'Parsel')
SwiftDriverJobDiscovery normal arm64 Compiling RegexParser.swift (in target 'Parsel' from project 'Parsel')
SwiftDriver\ Compilation Parsel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Parsel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.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 -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.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/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Binary/Parsel.o normal arm64 (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Parsel_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Binary/Parsel.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.o normal arm64\ armv7k\ arm64_32 (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64/Binary/Parsel.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/armv7k/Binary/Parsel.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parsel.build/Debug-watchos/Parsel.build/Objects-normal/arm64_32/Binary/Parsel.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.o (in target 'Parsel' from project 'Parsel')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Parsel.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Parsel' from project 'Parsel')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Parsel",
  "name" : "Parsel",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Parsel",
      "targets" : [
        "Parsel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParselTests",
      "module_type" : "SwiftTarget",
      "name" : "ParselTests",
      "path" : "Tests/ParselTests",
      "sources" : [
        "Errors_TestCase.swift",
        "Helpers.swift",
        "Lexical_TestCase.swift",
        "Operators+Sequential_TestCase.swift",
        "Operators_TestCase.swift",
        "ParseResult_TestCase.swift",
        "Parsel_TestCase.swift",
        "Parser+Conjunction_TestCase.swift",
        "Parser_TestCase.swift",
        "RegexParser_TestCase.swift"
      ],
      "target_dependencies" : [
        "Parsel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Parsel",
      "module_type" : "SwiftTarget",
      "name" : "Parsel",
      "path" : "Sources/Parsel",
      "product_memberships" : [
        "Parsel"
      ],
      "sources" : [
        "Core/Errors.swift",
        "Core/Operators+Sequential.swift",
        "Core/Operators.swift",
        "Core/ParseResult.swift",
        "Core/Parser+Conjunction.swift",
        "Core/Parser.swift",
        "Lexical.swift",
        "RegexParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.