Build Information
Successful build of Yams, reference 4.0.1 (138cf1), with Swift 6.1 for tvOS using Xcode 16.3 on 24 Jan 2026 10:35:52 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Yams -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCapturesBuild Log
public struct Name: RawRepresentable, Hashable {
^
, Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: add '@MainActor' to make static property 'defaultMappingMap' part of global actor 'MainActor'
public static let defaultMappingMap: MappingMap = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultMappingMap: MappingMap = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: warning: static property 'defaultSequenceMap' is not concurrency-safe because non-'Sendable' type 'Constructor.SequenceMap' (aka 'Dictionary<Tag.Name, (Node.Sequence) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultSequenceMap: SequenceMap = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: add '@MainActor' to make static property 'defaultSequenceMap' part of global actor 'MainActor'
public static let defaultSequenceMap: SequenceMap = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultSequenceMap: SequenceMap = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
public static let basic = Resolver()
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
public static let basic = Resolver()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let basic = Resolver()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bool = try! Resolver.Rule(.bool, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
public static let bool = try! Resolver.Rule(.bool, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bool = try! Resolver.Rule(.bool, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let int = try! Resolver.Rule(.int, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
public static let int = try! Resolver.Rule(.int, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let int = try! Resolver.Rule(.int, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let float = try! Resolver.Rule(.float, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
public static let float = try! Resolver.Rule(.float, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let float = try! Resolver.Rule(.float, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let null = try! Resolver.Rule(.null, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
public static let null = try! Resolver.Rule(.null, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let null = try! Resolver.Rule(.null, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let defaultTagName = Tag.Name.seq
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
static let defaultTagName = Tag.Name.seq
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let defaultTagName = Tag.Name.seq
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let defaultTagName = Tag.Name.map
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
static let defaultTagName = Tag.Name.map
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let defaultTagName = Tag.Name.map
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let defaultTagName = Tag.Name.str
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
static let defaultTagName = Tag.Name.str
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Scalar.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let defaultTagName = Tag.Name.str
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:38:10: warning: associated value 'scanner(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case scanner(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:38:10: warning: associated value 'scanner(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case scanner(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case parser(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case parser(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case composer(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case composer(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
static let null = Node("null", Tag(.null))
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
static let null = Node("null", Tag(.null))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let null = Node("null", Tag(.null))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused = Node("", .unused)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused = Node("", .unused)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused = Node("", .unused)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused = Tag(.unused)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:10:20: note: class 'Tag' does not conform to the 'Sendable' protocol
public final class Tag {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused = Tag(.unused)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused = Tag(.unused)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let implicit: Tag.Name = ""
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
public static let implicit: Tag.Name = ""
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let implicit: Tag.Name = ""
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: warning: static property 'nonSpecific' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let nonSpecific: Tag.Name = "!"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: add '@MainActor' to make static property 'nonSpecific' part of global actor 'MainActor'
public static let nonSpecific: Tag.Name = "!"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let nonSpecific: Tag.Name = "!"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: warning: static property 'str' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: add '@MainActor' to make static property 'str' part of global actor 'MainActor'
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: warning: static property 'seq' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: add '@MainActor' to make static property 'seq' part of global actor 'MainActor'
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: warning: static property 'map' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: add '@MainActor' to make static property 'map' part of global actor 'MainActor'
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: warning: static property 'omap' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: add '@MainActor' to make static property 'omap' part of global actor 'MainActor'
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: warning: static property 'pairs' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: add '@MainActor' to make static property 'pairs' part of global actor 'MainActor'
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: warning: static property 'set' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: add '@MainActor' to make static property 'set' part of global actor 'MainActor'
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: add '@MainActor' to make static property 'yaml' part of global actor 'MainActor'
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Constructor.swift,\ Resolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Constructor' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = Constructor()
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:12:20: note: class 'Constructor' does not conform to the 'Sendable' protocol
public final class Constructor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = Constructor()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = Constructor()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: warning: static property 'defaultScalarMap' is not concurrency-safe because non-'Sendable' type 'Constructor.ScalarMap' (aka 'Dictionary<Tag.Name, (Node.Scalar) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultScalarMap: ScalarMap = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: note: add '@MainActor' to make static property 'defaultScalarMap' part of global actor 'MainActor'
public static let defaultScalarMap: ScalarMap = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultScalarMap: ScalarMap = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: warning: static property 'defaultMappingMap' is not concurrency-safe because non-'Sendable' type 'Constructor.MappingMap' (aka 'Dictionary<Tag.Name, (Node.Mapping) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultMappingMap: MappingMap = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: add '@MainActor' to make static property 'defaultMappingMap' part of global actor 'MainActor'
public static let defaultMappingMap: MappingMap = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultMappingMap: MappingMap = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: warning: static property 'defaultSequenceMap' is not concurrency-safe because non-'Sendable' type 'Constructor.SequenceMap' (aka 'Dictionary<Tag.Name, (Node.Sequence) -> Optional<Any>>') may have shared mutable state; this is an error in the Swift 6 language mode
public static let defaultSequenceMap: SequenceMap = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: add '@MainActor' to make static property 'defaultSequenceMap' part of global actor 'MainActor'
public static let defaultSequenceMap: SequenceMap = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Constructor.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let defaultSequenceMap: SequenceMap = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
public static let basic = Resolver()
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
public static let basic = Resolver()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let basic = Resolver()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Resolver' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:12:20: note: class 'Resolver' does not conform to the 'Sendable' protocol
public final class Resolver {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = Resolver([.bool, .int, .float, .merge, .null, .timestamp, .value])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bool = try! Resolver.Rule(.bool, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
public static let bool = try! Resolver.Rule(.bool, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bool = try! Resolver.Rule(.bool, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let int = try! Resolver.Rule(.int, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
public static let int = try! Resolver.Rule(.int, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let int = try! Resolver.Rule(.int, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let float = try! Resolver.Rule(.float, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
public static let float = try! Resolver.Rule(.float, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let float = try! Resolver.Rule(.float, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let merge = try! Resolver.Rule(.merge, "^(?:<<)$")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let null = try! Resolver.Rule(.null, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
public static let null = try! Resolver.Rule(.null, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let null = try! Resolver.Rule(.null, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:143:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timestamp = try! Resolver.Rule(.timestamp, """
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Resolver.Rule' may have shared mutable state; this is an error in the Swift 6 language mode
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:14:19: note: consider making struct 'Rule' conform to the 'Sendable' protocol
public struct Rule {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Resolver.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let value = try! Resolver.Rule(.value, "^(?:=)$")
^
nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947681741-swift-frontend-Yams-Constructor.swift-arm64_apple_tvos9.0-o-Onone-1781797895.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8928 seconds (3.4897 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0205 ( 2.9%) 0.0187 ( 9.9%) 0.0392 ( 4.4%) 1.3181 ( 37.8%) parse-and-resolve-imports
0.0178 ( 2.5%) 0.0161 ( 8.5%) 0.0339 ( 3.8%) 1.3073 ( 37.5%) Import resolution
0.1295 ( 18.4%) 0.0280 ( 14.9%) 0.1574 ( 17.6%) 0.1579 ( 4.5%) perform-sema
0.1293 ( 18.3%) 0.0279 ( 14.8%) 0.1572 ( 17.6%) 0.1576 ( 4.5%) Type checking and Semantic analysis
0.0828 ( 11.7%) 0.0175 ( 9.3%) 0.1003 ( 11.2%) 0.1003 ( 2.9%) typecheck-expr
0.0825 ( 11.7%) 0.0133 ( 7.1%) 0.0958 ( 10.7%) 0.0958 ( 2.7%) typecheck-stmt
0.0605 ( 8.6%) 0.0165 ( 8.8%) 0.0769 ( 8.6%) 0.0774 ( 2.2%) typecheck-decl
0.0587 ( 8.3%) 0.0162 ( 8.6%) 0.0749 ( 8.4%) 0.0749 ( 2.1%) build-rewrite-system
0.0014 ( 0.2%) 0.0066 ( 3.5%) 0.0080 ( 0.9%) 0.0510 ( 1.5%) load-stdlib
0.0229 ( 3.2%) 0.0062 ( 3.3%) 0.0290 ( 3.3%) 0.0290 ( 0.8%) IRGen
0.0257 ( 3.6%) 0.0033 ( 1.7%) 0.0289 ( 3.2%) 0.0290 ( 0.8%) SILGen
0.0210 ( 3.0%) 0.0059 ( 3.2%) 0.0270 ( 3.0%) 0.0270 ( 0.8%) precheck-target
0.0127 ( 1.8%) 0.0085 ( 4.5%) 0.0213 ( 2.4%) 0.0214 ( 0.6%) import-clang-decl
0.0162 ( 2.3%) 0.0018 ( 0.9%) 0.0180 ( 2.0%) 0.0181 ( 0.5%) SILGen-function
0.0135 ( 1.9%) 0.0003 ( 0.2%) 0.0138 ( 1.5%) 0.0138 ( 0.4%) SIL optimization
0.0055 ( 0.8%) 0.0005 ( 0.3%) 0.0060 ( 0.7%) 0.0060 ( 0.2%) typecheck-for-each
0.0029 ( 0.4%) 0.0005 ( 0.3%) 0.0034 ( 0.4%) 0.0034 ( 0.1%) typecheck-expr-pattern
0.0006 ( 0.1%) 0.0002 ( 0.1%) 0.0009 ( 0.1%) 0.0009 ( 0.0%) load-all-members
0.0005 ( 0.1%) 0.0000 ( 0.0%) 0.0006 ( 0.1%) 0.0006 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.7048 (100.0%) 0.1880 (100.0%) 0.8928 (100.0%) 3.4897 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.5779 seconds (2.9711 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.9325 (100.0%) 0.6454 (100.0%) 1.5779 (100.0%) 2.9711 (100.0%) Building Target
0.9325 (100.0%) 0.6454 (100.0%) 1.5779 (100.0%) 2.9711 (100.0%) Total
SwiftCompile normal arm64 Compiling\ Mark.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947674087-swift-frontend-Yams-Mark.swift-arm64_apple_tvos9.0-o-Onone-4233748364.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.3437 seconds (2.9131 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0279 ( 13.9%) 0.0335 ( 23.5%) 0.0615 ( 17.9%) 1.3255 ( 45.5%) parse-and-resolve-imports
0.0251 ( 12.5%) 0.0313 ( 21.9%) 0.0564 ( 16.4%) 1.3145 ( 45.1%) Import resolution
0.0463 ( 23.0%) 0.0147 ( 10.3%) 0.0610 ( 17.7%) 0.0610 ( 2.1%) build-rewrite-system
0.0016 ( 0.8%) 0.0107 ( 7.5%) 0.0124 ( 3.6%) 0.0508 ( 1.7%) load-stdlib
0.0194 ( 9.6%) 0.0099 ( 6.9%) 0.0293 ( 8.5%) 0.0317 ( 1.1%) perform-sema
0.0193 ( 9.6%) 0.0099 ( 6.9%) 0.0292 ( 8.5%) 0.0316 ( 1.1%) Type checking and Semantic analysis
0.0176 ( 8.8%) 0.0068 ( 4.8%) 0.0245 ( 7.1%) 0.0253 ( 0.9%) typecheck-stmt
0.0136 ( 6.8%) 0.0077 ( 5.4%) 0.0213 ( 6.2%) 0.0232 ( 0.8%) typecheck-decl
0.0121 ( 6.0%) 0.0047 ( 3.3%) 0.0168 ( 4.9%) 0.0171 ( 0.6%) typecheck-expr
0.0068 ( 3.4%) 0.0026 ( 1.8%) 0.0094 ( 2.7%) 0.0097 ( 0.3%) precheck-target
0.0025 ( 1.2%) 0.0048 ( 3.4%) 0.0073 ( 2.1%) 0.0078 ( 0.3%) IRGen
0.0019 ( 0.9%) 0.0027 ( 1.9%) 0.0046 ( 1.3%) 0.0046 ( 0.2%) SILGen
0.0039 ( 1.9%) 0.0004 ( 0.3%) 0.0042 ( 1.2%) 0.0042 ( 0.1%) SIL optimization
0.0019 ( 0.9%) 0.0021 ( 1.5%) 0.0040 ( 1.2%) 0.0041 ( 0.1%) import-clang-decl
0.0009 ( 0.4%) 0.0010 ( 0.7%) 0.0019 ( 0.5%) 0.0019 ( 0.1%) SILGen-function
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.2010 (100.0%) 0.1428 (100.0%) 0.3437 (100.0%) 2.9131 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2030 seconds (2.5869 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5652 (100.0%) 0.6378 (100.0%) 1.2030 (100.0%) 2.5869 (100.0%) Building Target
0.5652 (100.0%) 0.6378 (100.0%) 1.2030 (100.0%) 2.5869 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Encoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947674831-swift-frontend-Yams-Encoder.swift-arm64_apple_tvos9.0-o-Onone-2726647514.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.4577 seconds (3.1557 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0214 ( 6.2%) 0.0181 ( 16.2%) 0.0395 ( 8.6%) 1.3702 ( 43.4%) parse-and-resolve-imports
0.0188 ( 5.4%) 0.0168 ( 15.0%) 0.0356 ( 7.8%) 1.3664 ( 43.3%) Import resolution
0.0600 ( 17.3%) 0.0107 ( 9.6%) 0.0707 ( 15.4%) 0.0707 ( 2.2%) perform-sema
0.0599 ( 17.3%) 0.0106 ( 9.5%) 0.0705 ( 15.4%) 0.0706 ( 2.2%) Type checking and Semantic analysis
0.0484 ( 14.0%) 0.0166 ( 14.9%) 0.0651 ( 14.2%) 0.0654 ( 2.1%) build-rewrite-system
0.0015 ( 0.4%) 0.0101 ( 9.0%) 0.0116 ( 2.5%) 0.0476 ( 1.5%) load-stdlib
0.0286 ( 8.3%) 0.0058 ( 5.2%) 0.0344 ( 7.5%) 0.0344 ( 1.1%) typecheck-stmt
0.0295 ( 8.5%) 0.0046 ( 4.1%) 0.0341 ( 7.4%) 0.0341 ( 1.1%) typecheck-decl
0.0221 ( 6.4%) 0.0046 ( 4.1%) 0.0267 ( 5.8%) 0.0267 ( 0.8%) typecheck-expr
0.0122 ( 3.5%) 0.0048 ( 4.3%) 0.0170 ( 3.7%) 0.0170 ( 0.5%) IRGen
0.0138 ( 4.0%) 0.0026 ( 2.4%) 0.0164 ( 3.6%) 0.0164 ( 0.5%) SILGen
0.0120 ( 3.5%) 0.0028 ( 2.5%) 0.0149 ( 3.2%) 0.0149 ( 0.5%) precheck-target
0.0087 ( 2.5%) 0.0000 ( 0.0%) 0.0087 ( 1.9%) 0.0087 ( 0.3%) SIL optimization
0.0072 ( 2.1%) 0.0009 ( 0.8%) 0.0081 ( 1.8%) 0.0081 ( 0.3%) SILGen-function
0.0017 ( 0.5%) 0.0023 ( 2.1%) 0.0040 ( 0.9%) 0.0040 ( 0.1%) import-clang-decl
0.0002 ( 0.1%) 0.0000 ( 0.0%) 0.0002 ( 0.1%) 0.0002 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.3463 (100.0%) 0.1113 (100.0%) 0.4577 (100.0%) 3.1557 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.1639 seconds (2.5916 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.6377 (100.0%) 0.5263 (100.0%) 1.1639 (100.0%) 2.5916 (100.0%) Building Target
0.6377 (100.0%) 0.5263 (100.0%) 1.1639 (100.0%) 2.5916 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
static let null = Node("null", Tag(.null))
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
static let null = Node("null", Tag(.null))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:264:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let null = Node("null", Tag(.null))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Node' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused = Node("", .unused)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift:12:13: note: consider making enum 'Node' conform to the 'Sendable' protocol
public enum Node: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused = Node("", .unused)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:265:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused = Node("", .unused)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused = Tag(.unused)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:10:20: note: class 'Tag' does not conform to the 'Sendable' protocol
public final class Tag {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused = Tag(.unused)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused = Tag(.unused)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: warning: static property 'unused' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: add '@MainActor' to make static property 'unused' part of global actor 'MainActor'
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Encoder.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unused: Tag.Name = "tag:yams.encoder:unused"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Representer.swift,\ Emitter.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Emitter.swift (in target 'Yams' from project 'Yams')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift:13:13: warning: let 'cpow' is not concurrency-safe because non-'Sendable' type '(Double, Double) -> Double' may have shared mutable state; this is an error in the Swift 6 language mode
private let cpow: (_: Double, _: Double) -> Double = Darwin.pow
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift:13:13: note: add '@MainActor' to make let 'cpow' part of global actor 'MainActor'
private let cpow: (_: Double, _: Double) -> Double = Darwin.pow
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Representer.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let cpow: (_: Double, _: Double) -> Double = Darwin.pow
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Emitter.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947667729-swift-frontend-Yams-Representer.swift-arm64_apple_tvos9.0-o-Onone-2443372030.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8498 seconds (4.1077 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0215 ( 3.3%) 0.0194 ( 10.1%) 0.0409 ( 4.8%) 1.6397 ( 39.9%) parse-and-resolve-imports
0.0193 ( 2.9%) 0.0181 ( 9.4%) 0.0373 ( 4.4%) 1.6362 ( 39.8%) Import resolution
0.1183 ( 18.0%) 0.0262 ( 13.6%) 0.1445 ( 17.0%) 0.1457 ( 3.5%) perform-sema
0.1181 ( 18.0%) 0.0261 ( 13.6%) 0.1442 ( 17.0%) 0.1454 ( 3.5%) Type checking and Semantic analysis
0.0805 ( 12.3%) 0.0163 ( 8.5%) 0.0968 ( 11.4%) 0.0973 ( 2.4%) typecheck-stmt
0.0567 ( 8.6%) 0.0179 ( 9.3%) 0.0746 ( 8.8%) 0.0757 ( 1.8%) build-rewrite-system
0.0590 ( 9.0%) 0.0147 ( 7.6%) 0.0737 ( 8.7%) 0.0744 ( 1.8%) typecheck-expr
0.0534 ( 8.1%) 0.0128 ( 6.6%) 0.0662 ( 7.8%) 0.0669 ( 1.6%) typecheck-decl
0.0017 ( 0.3%) 0.0117 ( 6.1%) 0.0134 ( 1.6%) 0.0649 ( 1.6%) load-stdlib
0.0296 ( 4.5%) 0.0042 ( 2.2%) 0.0338 ( 4.0%) 0.0348 ( 0.8%) SILGen
0.0250 ( 3.8%) 0.0055 ( 2.9%) 0.0305 ( 3.6%) 0.0315 ( 0.8%) IRGen
0.0230 ( 3.5%) 0.0058 ( 3.0%) 0.0288 ( 3.4%) 0.0291 ( 0.7%) precheck-target
0.0155 ( 2.4%) 0.0101 ( 5.2%) 0.0255 ( 3.0%) 0.0257 ( 0.6%) import-clang-decl
0.0196 ( 3.0%) 0.0025 ( 1.3%) 0.0221 ( 2.6%) 0.0229 ( 0.6%) SILGen-function
0.0141 ( 2.2%) 0.0005 ( 0.3%) 0.0146 ( 1.7%) 0.0148 ( 0.4%) SIL optimization
0.0015 ( 0.2%) 0.0009 ( 0.5%) 0.0024 ( 0.3%) 0.0024 ( 0.1%) load-all-members
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.6571 (100.0%) 0.1928 (100.0%) 0.8498 (100.0%) 4.1077 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2911 seconds (2.9875 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.8672 (100.0%) 0.4239 (100.0%) 1.2911 (100.0%) 2.9875 (100.0%) Building Target
0.8672 (100.0%) 0.4239 (100.0%) 1.2911 (100.0%) 2.9875 (100.0%) Total
SwiftCompile normal arm64 Compiling\ Node.Sequence.swift,\ Node.Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947673184-swift-frontend-Yams-Node.Sequence.swift-arm64_apple_tvos9.0-o-Onone-3558920790.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.5761 seconds (3.1844 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0205 ( 4.6%) 0.0167 ( 13.1%) 0.0372 ( 6.5%) 1.3189 ( 41.4%) parse-and-resolve-imports
0.0177 ( 3.9%) 0.0141 ( 11.0%) 0.0318 ( 5.5%) 1.3080 ( 41.1%) Import resolution
0.0856 ( 19.1%) 0.0178 ( 14.0%) 0.1034 ( 18.0%) 0.1049 ( 3.3%) perform-sema
0.0854 ( 19.0%) 0.0178 ( 13.9%) 0.1032 ( 17.9%) 0.1047 ( 3.3%) Type checking and Semantic analysis
0.0496 ( 11.1%) 0.0166 ( 13.0%) 0.0662 ( 11.5%) 0.0663 ( 2.1%) build-rewrite-system
0.0016 ( 0.4%) 0.0112 ( 8.8%) 0.0128 ( 2.2%) 0.0585 ( 1.8%) load-stdlib
0.0499 ( 11.1%) 0.0056 ( 4.4%) 0.0555 ( 9.6%) 0.0555 ( 1.7%) typecheck-stmt
0.0393 ( 8.8%) 0.0122 ( 9.6%) 0.0515 ( 8.9%) 0.0529 ( 1.7%) typecheck-decl
0.0225 ( 5.0%) 0.0030 ( 2.4%) 0.0255 ( 4.4%) 0.0255 ( 0.8%) typecheck-expr
0.0217 ( 4.8%) 0.0028 ( 2.2%) 0.0245 ( 4.3%) 0.0245 ( 0.8%) SILGen
0.0193 ( 4.3%) 0.0045 ( 3.5%) 0.0237 ( 4.1%) 0.0238 ( 0.7%) IRGen
0.0135 ( 3.0%) 0.0014 ( 1.1%) 0.0148 ( 2.6%) 0.0148 ( 0.5%) SILGen-function
0.0096 ( 2.2%) 0.0013 ( 1.0%) 0.0109 ( 1.9%) 0.0109 ( 0.3%) precheck-target
0.0089 ( 2.0%) 0.0001 ( 0.1%) 0.0090 ( 1.6%) 0.0090 ( 0.3%) SIL optimization
0.0018 ( 0.4%) 0.0024 ( 1.8%) 0.0041 ( 0.7%) 0.0042 ( 0.1%) import-clang-decl
0.0011 ( 0.2%) 0.0001 ( 0.1%) 0.0012 ( 0.2%) 0.0012 ( 0.0%) typecheck-expr-pattern
0.0004 ( 0.1%) 0.0000 ( 0.0%) 0.0004 ( 0.1%) 0.0004 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4485 (100.0%) 0.1276 (100.0%) 0.5761 (100.0%) 3.1844 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2181 seconds (2.6039 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.7086 (100.0%) 0.5095 (100.0%) 1.2181 (100.0%) 2.6039 (100.0%) Building Target
0.7086 (100.0%) 0.5095 (100.0%) 1.2181 (100.0%) 2.6039 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let defaultTagName = Tag.Name.seq
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
static let defaultTagName = Tag.Name.seq
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Sequence.swift:180:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let defaultTagName = Tag.Name.seq
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: warning: static property 'defaultTagName' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
static let defaultTagName = Tag.Name.map
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: add '@MainActor' to make static property 'defaultTagName' part of global actor 'MainActor'
static let defaultTagName = Tag.Name.map
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.Mapping.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let defaultTagName = Tag.Name.map
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ String+Yams.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947675780-swift-frontend-Yams-String_Yams.swift-arm64_apple_tvos9.0-o-Onone-587668073.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.7396 seconds (2.9888 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.9222 ( 44.5%) 0.2971 ( 44.6%) 1.2193 ( 44.5%) 1.3395 ( 44.8%) parse-and-resolve-imports
0.9192 ( 44.3%) 0.2945 ( 44.2%) 1.2137 ( 44.3%) 1.3285 ( 44.4%) Import resolution
0.0791 ( 3.8%) 0.0190 ( 2.9%) 0.0981 ( 3.6%) 0.0981 ( 3.3%) build-rewrite-system
0.0278 ( 1.3%) 0.0089 ( 1.3%) 0.0367 ( 1.3%) 0.0385 ( 1.3%) perform-sema
0.0278 ( 1.3%) 0.0089 ( 1.3%) 0.0367 ( 1.3%) 0.0385 ( 1.3%) Type checking and Semantic analysis
0.0111 ( 0.5%) 0.0146 ( 2.2%) 0.0257 ( 0.9%) 0.0345 ( 1.2%) load-stdlib
0.0258 ( 1.2%) 0.0059 ( 0.9%) 0.0318 ( 1.2%) 0.0323 ( 1.1%) typecheck-stmt
0.0161 ( 0.8%) 0.0021 ( 0.3%) 0.0181 ( 0.7%) 0.0181 ( 0.6%) typecheck-expr
0.0096 ( 0.5%) 0.0065 ( 1.0%) 0.0161 ( 0.6%) 0.0161 ( 0.5%) import-clang-decl
0.0120 ( 0.6%) 0.0024 ( 0.4%) 0.0145 ( 0.5%) 0.0145 ( 0.5%) precheck-target
0.0044 ( 0.2%) 0.0031 ( 0.5%) 0.0074 ( 0.3%) 0.0087 ( 0.3%) typecheck-decl
0.0053 ( 0.3%) 0.0010 ( 0.2%) 0.0063 ( 0.2%) 0.0063 ( 0.2%) SILGen
0.0042 ( 0.2%) 0.0008 ( 0.1%) 0.0049 ( 0.2%) 0.0049 ( 0.2%) SILGen-function
0.0029 ( 0.1%) 0.0018 ( 0.3%) 0.0046 ( 0.2%) 0.0046 ( 0.2%) IRGen
0.0046 ( 0.2%) 0.0001 ( 0.0%) 0.0046 ( 0.2%) 0.0046 ( 0.2%) SIL optimization
0.0006 ( 0.0%) 0.0003 ( 0.0%) 0.0009 ( 0.0%) 0.0009 ( 0.0%) load-all-members
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.0727 (100.0%) 0.6670 (100.0%) 2.7396 (100.0%) 2.9888 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 2.7416 seconds (2.9587 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.7936 (100.0%) 0.9480 (100.0%) 2.7416 (100.0%) 2.9587 (100.0%) Building Target
1.7936 (100.0%) 0.9480 (100.0%) 2.7416 (100.0%) 2.9587 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/String+Yams.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Tag.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947673431-swift-frontend-Yams-Tag.swift-arm64_apple_tvos9.0-o-Onone-3850946531.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.3078 seconds (3.4530 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0225 ( 10.6%) 0.0196 ( 20.5%) 0.0421 ( 13.7%) 1.5964 ( 46.2%) parse-and-resolve-imports
0.0198 ( 9.3%) 0.0182 ( 19.1%) 0.0381 ( 12.4%) 1.5924 ( 46.1%) Import resolution
0.0491 ( 23.1%) 0.0167 ( 17.5%) 0.0658 ( 21.4%) 0.0672 ( 1.9%) build-rewrite-system
0.0017 ( 0.8%) 0.0120 ( 12.5%) 0.0137 ( 4.4%) 0.0486 ( 1.4%) load-stdlib
0.0300 ( 14.1%) 0.0067 ( 7.0%) 0.0367 ( 11.9%) 0.0367 ( 1.1%) perform-sema
0.0299 ( 14.1%) 0.0067 ( 7.0%) 0.0366 ( 11.9%) 0.0367 ( 1.1%) Type checking and Semantic analysis
0.0170 ( 8.0%) 0.0053 ( 5.6%) 0.0223 ( 7.2%) 0.0223 ( 0.6%) typecheck-decl
0.0124 ( 5.8%) 0.0013 ( 1.3%) 0.0136 ( 4.4%) 0.0136 ( 0.4%) typecheck-stmt
0.0107 ( 5.0%) 0.0025 ( 2.6%) 0.0132 ( 4.3%) 0.0132 ( 0.4%) typecheck-expr
0.0049 ( 2.3%) 0.0029 ( 3.0%) 0.0077 ( 2.5%) 0.0077 ( 0.2%) IRGen
0.0045 ( 2.1%) 0.0008 ( 0.9%) 0.0053 ( 1.7%) 0.0053 ( 0.2%) SILGen
0.0042 ( 2.0%) 0.0000 ( 0.1%) 0.0042 ( 1.4%) 0.0042 ( 0.1%) SIL optimization
0.0016 ( 0.8%) 0.0023 ( 2.4%) 0.0039 ( 1.3%) 0.0039 ( 0.1%) import-clang-decl
0.0021 ( 1.0%) 0.0002 ( 0.2%) 0.0023 ( 0.7%) 0.0022 ( 0.1%) precheck-target
0.0018 ( 0.9%) 0.0002 ( 0.2%) 0.0021 ( 0.7%) 0.0021 ( 0.1%) SILGen-function
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.2123 (100.0%) 0.0955 (100.0%) 0.3078 (100.0%) 3.4530 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.9551 seconds (2.5891 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5389 (100.0%) 0.4161 (100.0%) 0.9551 (100.0%) 2.5891 (100.0%) Building Target
0.5389 (100.0%) 0.4161 (100.0%) 0.9551 (100.0%) 2.5891 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: warning: static property 'implicit' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let implicit: Tag.Name = ""
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: add '@MainActor' to make static property 'implicit' part of global actor 'MainActor'
public static let implicit: Tag.Name = ""
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let implicit: Tag.Name = ""
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: warning: static property 'nonSpecific' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let nonSpecific: Tag.Name = "!"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: add '@MainActor' to make static property 'nonSpecific' part of global actor 'MainActor'
public static let nonSpecific: Tag.Name = "!"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let nonSpecific: Tag.Name = "!"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: warning: static property 'str' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: add '@MainActor' to make static property 'str' part of global actor 'MainActor'
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let str: Tag.Name = "tag:yaml.org,2002:str"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: warning: static property 'seq' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: add '@MainActor' to make static property 'seq' part of global actor 'MainActor'
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let seq: Tag.Name = "tag:yaml.org,2002:seq"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: warning: static property 'map' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: add '@MainActor' to make static property 'map' part of global actor 'MainActor'
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let map: Tag.Name = "tag:yaml.org,2002:map"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: warning: static property 'bool' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: add '@MainActor' to make static property 'bool' part of global actor 'MainActor'
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bool: Tag.Name = "tag:yaml.org,2002:bool"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: warning: static property 'float' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let float: Tag.Name = "tag:yaml.org,2002:float"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: warning: static property 'null' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: add '@MainActor' to make static property 'null' part of global actor 'MainActor'
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let null: Tag.Name = "tag:yaml.org,2002:null"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: warning: static property 'int' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: add '@MainActor' to make static property 'int' part of global actor 'MainActor'
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let int: Tag.Name = "tag:yaml.org,2002:int"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let binary: Tag.Name = "tag:yaml.org,2002:binary"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: warning: static property 'merge' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: add '@MainActor' to make static property 'merge' part of global actor 'MainActor'
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:123:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let merge: Tag.Name = "tag:yaml.org,2002:merge"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: warning: static property 'omap' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: add '@MainActor' to make static property 'omap' part of global actor 'MainActor'
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let omap: Tag.Name = "tag:yaml.org,2002:omap"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: warning: static property 'pairs' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: add '@MainActor' to make static property 'pairs' part of global actor 'MainActor'
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pairs: Tag.Name = "tag:yaml.org,2002:pairs"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: warning: static property 'set' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: add '@MainActor' to make static property 'set' part of global actor 'MainActor'
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let set: Tag.Name = "tag:yaml.org,2002:set"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let timestamp: Tag.Name = "tag:yaml.org,2002:timestamp"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let value: Tag.Name = "tag:yaml.org,2002:value"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'Tag.Name' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:12:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
public struct Name: RawRepresentable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: add '@MainActor' to make static property 'yaml' part of global actor 'MainActor'
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Tag.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yaml: Tag.Name = "tag:yaml.org,2002:yaml"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Parser.swift,\ Node.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250947680002-swift-frontend-Yams-Parser.swift-arm64_apple_tvos9.0-o-Onone-2577279615.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7316 seconds (3.5410 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0212 ( 3.6%) 0.0172 ( 11.5%) 0.0384 ( 5.2%) 1.4234 ( 40.2%) parse-and-resolve-imports
0.0187 ( 3.2%) 0.0158 ( 10.5%) 0.0345 ( 4.7%) 1.4196 ( 40.1%) Import resolution
0.1013 ( 17.4%) 0.0181 ( 12.0%) 0.1193 ( 16.3%) 0.1193 ( 3.4%) perform-sema
0.1011 ( 17.4%) 0.0180 ( 12.0%) 0.1191 ( 16.3%) 0.1191 ( 3.4%) Type checking and Semantic analysis
0.0573 ( 9.9%) 0.0167 ( 11.1%) 0.0740 ( 10.1%) 0.0748 ( 2.1%) build-rewrite-system
0.0625 ( 10.8%) 0.0083 ( 5.5%) 0.0708 ( 9.7%) 0.0711 ( 2.0%) typecheck-stmt
0.0561 ( 9.6%) 0.0116 ( 7.7%) 0.0676 ( 9.2%) 0.0679 ( 1.9%) typecheck-expr
0.0469 ( 8.1%) 0.0104 ( 6.9%) 0.0573 ( 7.8%) 0.0573 ( 1.6%) typecheck-decl
0.0013 ( 0.2%) 0.0073 ( 4.9%) 0.0086 ( 1.2%) 0.0457 ( 1.3%) load-stdlib
0.0286 ( 4.9%) 0.0048 ( 3.2%) 0.0334 ( 4.6%) 0.0337 ( 1.0%) SILGen
0.0229 ( 3.9%) 0.0059 ( 4.0%) 0.0288 ( 3.9%) 0.0288 ( 0.8%) IRGen
0.0207 ( 3.6%) 0.0030 ( 2.0%) 0.0237 ( 3.2%) 0.0240 ( 0.7%) SILGen-function
0.0140 ( 2.4%) 0.0088 ( 5.8%) 0.0227 ( 3.1%) 0.0229 ( 0.6%) import-clang-decl
0.0156 ( 2.7%) 0.0030 ( 2.0%) 0.0186 ( 2.5%) 0.0185 ( 0.5%) precheck-target
0.0104 ( 1.8%) 0.0003 ( 0.2%) 0.0107 ( 1.5%) 0.0107 ( 0.3%) SIL optimization
0.0013 ( 0.2%) 0.0008 ( 0.6%) 0.0022 ( 0.3%) 0.0022 ( 0.1%) load-all-members
0.0008 ( 0.1%) 0.0001 ( 0.1%) 0.0009 ( 0.1%) 0.0009 ( 0.0%) typecheck-expr-pattern
0.0004 ( 0.1%) 0.0000 ( 0.0%) 0.0004 ( 0.1%) 0.0004 ( 0.0%) typecheck-for-each
0.0003 ( 0.1%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.5815 (100.0%) 0.1502 (100.0%) 0.7316 (100.0%) 3.5410 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.4709 seconds (2.9704 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.8848 (100.0%) 0.5861 (100.0%) 1.4709 (100.0%) 2.9704 (100.0%) Building Target
0.8848 (100.0%) 0.5861 (100.0%) 1.4709 (100.0%) 2.9704 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var `default`: Encoding = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
public static var `default`: Encoding = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
public static var `default`: Encoding = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Parser.swift:128:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var `default`: Encoding = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/Node.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ YamlError.swift /Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift (in target 'Yams' from project 'Yams')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1769250949737731-swift-frontend-Yams-YamlError.swift-arm64_apple_tvos9.0-o-Onone-3988498313.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.4023 seconds (0.4100 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0482 ( 17.5%) 0.0133 ( 10.5%) 0.0615 ( 15.3%) 0.0623 ( 15.2%) perform-sema
0.0481 ( 17.5%) 0.0133 ( 10.5%) 0.0614 ( 15.3%) 0.0622 ( 15.2%) Type checking and Semantic analysis
0.0252 ( 9.2%) 0.0303 ( 23.9%) 0.0555 ( 13.8%) 0.0570 ( 13.9%) parse-and-resolve-imports
0.0215 ( 7.8%) 0.0283 ( 22.4%) 0.0498 ( 12.4%) 0.0512 ( 12.5%) Import resolution
0.0393 ( 14.3%) 0.0100 ( 7.9%) 0.0493 ( 12.3%) 0.0500 ( 12.2%) typecheck-stmt
0.0177 ( 6.4%) 0.0044 ( 3.5%) 0.0221 ( 5.5%) 0.0226 ( 5.5%) typecheck-expr
0.0177 ( 6.4%) 0.0046 ( 3.6%) 0.0223 ( 5.5%) 0.0224 ( 5.5%) build-rewrite-system
0.0141 ( 5.1%) 0.0040 ( 3.1%) 0.0181 ( 4.5%) 0.0185 ( 4.5%) precheck-target
0.0131 ( 4.8%) 0.0040 ( 3.1%) 0.0171 ( 4.3%) 0.0172 ( 4.2%) typecheck-decl
0.0063 ( 2.3%) 0.0046 ( 3.6%) 0.0109 ( 2.7%) 0.0116 ( 2.8%) IRGen
0.0052 ( 1.9%) 0.0053 ( 4.2%) 0.0105 ( 2.6%) 0.0106 ( 2.6%) import-clang-decl
0.0072 ( 2.6%) 0.0014 ( 1.1%) 0.0086 ( 2.1%) 0.0088 ( 2.1%) SILGen
0.0056 ( 2.0%) 0.0002 ( 0.1%) 0.0058 ( 1.4%) 0.0061 ( 1.5%) SIL optimization
0.0033 ( 1.2%) 0.0002 ( 0.2%) 0.0035 ( 0.9%) 0.0036 ( 0.9%) SILGen-function
0.0010 ( 0.4%) 0.0020 ( 1.6%) 0.0031 ( 0.8%) 0.0032 ( 0.8%) load-stdlib
0.0012 ( 0.4%) 0.0002 ( 0.1%) 0.0014 ( 0.3%) 0.0014 ( 0.3%) typecheck-expr-pattern
0.0007 ( 0.3%) 0.0006 ( 0.5%) 0.0013 ( 0.3%) 0.0014 ( 0.3%) load-all-members
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.2757 (100.0%) 0.1266 (100.0%) 0.4023 (100.0%) 0.4100 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.5075 seconds (0.5303 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2599 (100.0%) 0.2477 (100.0%) 0.5075 (100.0%) 0.5303 (100.0%) Building Target
0.2599 (100.0%) 0.2477 (100.0%) 0.5075 (100.0%) 0.5303 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:38:10: warning: associated value 'scanner(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case scanner(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:38:10: warning: associated value 'scanner(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case scanner(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case parser(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:46:10: warning: associated value 'parser(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case parser(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'YamlError.Context'; this is an error in the Swift 6 language mode
case composer(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:78:19: note: consider making struct 'Context' conform to the 'Sendable' protocol
public struct Context: CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Yams/YamlError.swift:54:10: warning: associated value 'composer(context:problem:_:yaml:)' of 'Sendable'-conforming enum 'YamlError' has non-sendable type 'Mark'; this is an error in the Swift 6 language mode
case composer(context: Context?, problem: String, Mark, yaml: String)
^
/Users/admin/builder/spi-builder-workspace/Sources/Yams/Mark.swift:10:15: note: consider making struct 'Mark' conform to the 'Sendable' protocol
public struct Mark {
^
: Sendable
SwiftDriverJobDiscovery normal arm64 Emitting module for Yams (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation\ Requirements Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-appletvos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-appletvos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling YamlError.swift (in target 'Yams' from project 'Yams')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Headers/Yams-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-Swift.h (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Headers/Yams-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftmodule (in target 'Yams' from project 'Yams')
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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftdoc (in target 'Yams' from project 'Yams')
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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling Tag.swift (in target 'Yams' from project 'Yams')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.abi.json (in target 'Yams' from project 'Yams')
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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftsourceinfo (in target 'Yams' from project 'Yams')
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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Modules/Yams.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Mark.swift (in target 'Yams' from project 'Yams')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o
SwiftDriverJobDiscovery normal arm64 Compiling Encoder.swift (in target 'Yams' from project 'Yams')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o
SwiftDriverJobDiscovery normal arm64 Compiling Node.Sequence.swift, Node.Mapping.swift (in target 'Yams' from project 'Yams')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-30T0WTHE0V5XMKEDQE7W10KLE.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-30T0WTHE0V5XMKEDQE7W10KLE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-7ZEB3YDR60GUZL4U9ZEM4V1XR.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-7ZEB3YDR60GUZL4U9ZEM4V1XR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-8OARY39MQPLN9Y726B725BMOT.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-8OARY39MQPLN9Y726B725BMOT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-3HXX3TRSXLM7G27LS2LK5DXWE.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-3HXX3TRSXLM7G27LS2LK5DXWE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6ZYZJ6WW02XI0XC8IAKYS7HWX.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6ZYZJ6WW02XI0XC8IAKYS7HWX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-DDQ5OHVR374AAK2BXGP20N06R.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-DDQ5OHVR374AAK2BXGP20N06R.scan
SwiftDriverJobDiscovery normal arm64 Compiling String+Yams.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, Node.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Decoder.swift, Node.Scalar.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Constructor.swift, Resolver.swift (in target 'Yams' from project 'Yams')
SwiftDriverJobDiscovery normal arm64 Compiling Representer.swift, Emitter.swift (in target 'Yams' from project 'Yams')
SwiftDriver\ Compilation Yams normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Yams -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos9.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-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/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.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/Yams.build/Debug-appletvos/Yams.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams-df5d82b2269df6b45c6ccb78522e34b2-VFS-appletvos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-6JECVXFKDDF82LUXIUD986TBR.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-6JECVXFKDDF82LUXIUD986TBR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7H0MAY5D3EYFTFEGXY470JA17.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7H0MAY5D3EYFTFEGXY470JA17.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-79MZMTGVR5TQLSXZLLJYGDIWE.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-79MZMTGVR5TQLSXZLLJYGDIWE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-9W92CAYJ5KK50T6FYPV1SJVUO.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-9W92CAYJ5KK50T6FYPV1SJVUO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-SJL5ORL063LQZE6B3EN4UAO4.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-SJL5ORL063LQZE6B3EN4UAO4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-9IEOGR16QZNDQQN51Q8LT9CKE.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-9IEOGR16QZNDQQN51Q8LT9CKE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4G4HOSWTZ4F57ZEMLFHNE291L.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4G4HOSWTZ4F57ZEMLFHNE291L.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-AUYMZD20D7BJT5HYQPI09SCTV.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-AUYMZD20D7BJT5HYQPI09SCTV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-E4JLRY8TG3F321DLM3BDY7JNC.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-E4JLRY8TG3F321DLM3BDY7JNC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-27KS13LIRE0CBXRGX682TVJI7.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-27KS13LIRE0CBXRGX682TVJI7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-1R0MYYJEQF9QFK2579870RL7V.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-1R0MYYJEQF9QFK2579870RL7V.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-DR4XWZRIDSBF4GVIDTRMGOQU0.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-DR4XWZRIDSBF4GVIDTRMGOQU0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-BPTOU4KQPYQIDDHTJ0SLWVLWA.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-BPTOU4KQPYQIDDHTJ0SLWVLWA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-34I135H19HXRGEZ4N7L54ORY9.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-34I135H19HXRGEZ4N7L54ORY9.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-DJ9NY1HYP970G9R1G3EAKC1A1.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-DJ9NY1HYP970G9R1G3EAKC1A1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-52N6F7J0KJNRQ4HMP1T1SUX15.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-52N6F7J0KJNRQ4HMP1T1SUX15.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4XCUPBYTNAZX5F0FZ94UDPSKX.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4XCUPBYTNAZX5F0FZ94UDPSKX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-7IR5JHOXL58NM3ABHF0Q85GZ9.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-7IR5JHOXL58NM3ABHF0Q85GZ9.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-SFHIV6N4D2V0U7JYWQ1QMHC4.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-SFHIV6N4D2V0U7JYWQ1QMHC4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-BWEV8OXI9BA33FXKL1L23XEAN.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-BWEV8OXI9BA33FXKL1L23XEAN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-6JD1NDLEMO9HCME03JIP99M8K.scan
cd /Users/admin/builder/spi-builder-workspace
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-6JD1NDLEMO9HCME03JIP99M8K.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/scanner.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/scanner.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/reader.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/reader.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/parser.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/parser-5159aa4650992fad6b72e7d5834281af.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/writer.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/writer.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/emitter.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/emitter-14abe1e273fda229dea5bd27666e6313.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -Wall @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.dia -c /Users/admin/builder/spi-builder-workspace/Sources/CYaml/src/api.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o -index-unit-output-path /Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/api.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Yams normal (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos9.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.LinkFileList -install_name @rpath/Yams.framework/Yams -Xlinker -rpath -Xlinker /usr/lib/swift -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.swiftmodule -compatibility_version 1 -current_version 1 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Yams
PhaseScriptExecution Run\ Script /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Script-6C0D2A341E0A6F5000C45545.sh (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/bin/sh -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Script-6C0D2A341E0A6F5000C45545.sh
warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint
ExtractAppIntentsMetadata (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Yams --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 9.0 --bundle-identifier com.jpsim.Yams --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework --target-triple arm64-apple-tvos9.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Yams --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Yams.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Yams.build/Debug-appletvos/Yams.build/Objects-normal/arm64/Yams.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-01-24 02:35:51.369 appintentsmetadataprocessor[775:4429] Starting appintentsmetadataprocessor export
2026-01-24 02:35:51.371 appintentsmetadataprocessor[775:4429] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Yams.framework/Yams.tbd (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework/Yams -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Yams.framework/Yams.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework (in target 'Yams' from project 'Yams')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Yams.framework
/Users/admin/builder/spi-builder-workspace/Yams.xcodeproj: warning: The tvOS deployment target 'TVOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 12.0 to 18.4.99. (in target 'Yams' from project 'Yams')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Yams' from project 'Yams')
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Yams",
"name" : "Yams",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Yams",
"targets" : [
"Yams"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "YamsTests",
"module_type" : "SwiftTarget",
"name" : "YamsTests",
"path" : "Tests/YamsTests",
"sources" : [
"ConstructorTests.swift",
"EmitterTests.swift",
"EncoderTests.swift",
"MarkTests.swift",
"NodeTests.swift",
"PerformanceTests.swift",
"RepresenterTests.swift",
"ResolverTests.swift",
"SpecTests.swift",
"StringTests.swift",
"TestHelper.swift",
"TopLevelDecoderTests.swift",
"YamlErrorTests.swift"
],
"target_dependencies" : [
"Yams"
],
"type" : "test"
},
{
"c99name" : "Yams",
"module_type" : "SwiftTarget",
"name" : "Yams",
"path" : "Sources/Yams",
"product_memberships" : [
"Yams"
],
"sources" : [
"Constructor.swift",
"Decoder.swift",
"Emitter.swift",
"Encoder.swift",
"Mark.swift",
"Node.Mapping.swift",
"Node.Scalar.swift",
"Node.Sequence.swift",
"Node.swift",
"Parser.swift",
"Representer.swift",
"Resolver.swift",
"String+Yams.swift",
"Tag.swift",
"YamlError.swift"
],
"target_dependencies" : [
"CYaml"
],
"type" : "library"
},
{
"c99name" : "CYaml",
"module_type" : "ClangTarget",
"name" : "CYaml",
"path" : "Sources/CYaml",
"product_memberships" : [
"Yams"
],
"sources" : [
"src/api.c",
"src/emitter.c",
"src/parser.c",
"src/reader.c",
"src/scanner.c",
"src/writer.c"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.