Build Information
Successful build of VM, reference v0.1.2 (45a8ec), with Swift 6.2 for macOS (SPM) on 30 Apr 2026 19:17:12 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/subpop/vm.git
Reference: v0.1.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/subpop/vm
* tag v0.1.2 -> FETCH_HEAD
HEAD is now at 45a8ec6 Set version to 0.1.2
Cloned https://github.com/subpop/vm.git
Revision (git rev-parse @):
45a8ec687a39e2ae68b4fc2349dbb9765ddd754d
SUCCESS checkout https://github.com/subpop/vm.git at v0.1.2
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/subpop/vm.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/19] Write sources
[5/19] Write vm-entitlement.plist
[5/19] Write sources
[9/19] Write swift-version--3CB7CFEC50E0D141.txt
[10/27] Compiling writer.c
[11/27] Compiling api.c
[12/27] Compiling emitter.c
[13/27] Compiling reader.c
[14/27] Compiling parser.c
[15/27] Compiling scanner.c
[17/47] Compiling ArgumentParserToolInfo ToolInfo.swift
[18/47] Emitting module ArgumentParserToolInfo
[19/94] Compiling Logging LogHandler.swift
[20/94] Compiling Logging Logging.swift
[21/94] Emitting module Logging
[22/94] Compiling Logging LogEvent.swift
[23/94] Compiling Logging MetadataProvider.swift
[24/94] Compiling Logging Locks.swift
[25/94] Compiling ArgumentParser ArgumentHelp.swift
[26/94] Compiling ArgumentParser ArgumentVisibility.swift
[27/94] Compiling ArgumentParser CompletionKind.swift
[28/94] Compiling ArgumentParser Errors.swift
[29/94] Compiling ArgumentParser Flag.swift
[30/99] Compiling ArgumentParser Platform.swift
[31/99] Compiling ArgumentParser SequenceExtensions.swift
[32/99] Compiling ArgumentParser StringExtensions.swift
[33/99] Compiling ArgumentParser SwiftExtensions.swift
[34/99] Compiling ArgumentParser Tree.swift
[35/99] Compiling ArgumentParser InputKey.swift
[36/99] Compiling ArgumentParser InputOrigin.swift
[37/99] Compiling ArgumentParser Name.swift
[38/99] Compiling ArgumentParser Parsed.swift
[39/99] Compiling ArgumentParser ParsedValues.swift
[40/99] Emitting module ArgumentParser
[41/99] Compiling ArgumentParser CommandConfiguration.swift
[42/99] Compiling ArgumentParser CommandGroup.swift
[43/99] Compiling ArgumentParser EnumerableFlag.swift
[44/99] Compiling ArgumentParser ExpressibleByArgument.swift
[45/99] Compiling ArgumentParser ParsableArguments.swift
[46/99] Compiling ArgumentParser CodingKeyValidator.swift
[47/99] Compiling ArgumentParser NonsenseFlagsValidator.swift
[48/99] Compiling ArgumentParser ParsableArgumentsValidation.swift
[49/99] Compiling ArgumentParser PositionalArgumentsValidator.swift
[50/99] Compiling ArgumentParser UniqueNamesValidator.swift
[51/99] Compiling ArgumentParser BashCompletionsGenerator.swift
[52/99] Compiling ArgumentParser CompletionsGenerator.swift
[53/99] Compiling ArgumentParser FishCompletionsGenerator.swift
[54/99] Compiling ArgumentParser ZshCompletionsGenerator.swift
[55/99] Compiling ArgumentParser Argument.swift
[56/99] Compiling ArgumentParser ArgumentDiscussion.swift
[57/99] Compiling ArgumentParser ParserError.swift
[58/99] Compiling ArgumentParser SplitArguments.swift
[59/99] Compiling ArgumentParser DumpHelpGenerator.swift
[60/99] Compiling ArgumentParser HelpCommand.swift
[61/99] Compiling ArgumentParser HelpGenerator.swift
[62/99] Compiling ArgumentParser ParsableCommand.swift
[63/99] Compiling ArgumentParser ArgumentDecoder.swift
[64/99] Compiling ArgumentParser ArgumentDefinition.swift
[65/99] Compiling ArgumentParser ArgumentSet.swift
[66/99] Compiling ArgumentParser CommandParser.swift
[80/101] Emitting module Yams
[87/101] Compiling ArgumentParser NameSpecification.swift
[88/101] Compiling ArgumentParser Option.swift
[89/101] Compiling ArgumentParser OptionGroup.swift
[90/101] Compiling ArgumentParser ParentCommand.swift
[91/101] Compiling ArgumentParser AsyncParsableCommand.swift
[92/101] Compiling ArgumentParser MessageInfo.swift
[93/101] Compiling ArgumentParser UsageGenerator.swift
[94/101] Compiling ArgumentParser CollectionExtensions.swift
[95/101] Compiling ArgumentParser Foundation.swift
[96/101] Compiling ArgumentParser Mutex.swift
[97/101] Compiling Yams YamlError.swift
[98/101] Compiling Yams YamlTagProviding.swift
[99/116] Compiling VMCore Socket.swift
[100/116] Compiling VMCore DiskManager.swift
[101/116] Compiling VMCore ExitFlag.swift
[102/116] Compiling VMCore Terminal.swift
[103/117] Compiling VMCore Logger.swift
[104/117] Compiling VMCore Manager.swift
[105/117] Compiling VMCore RescueCache.swift
[106/117] Compiling VMCore VsockGuestAgent.swift
[107/117] Compiling VMCore FileLogHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/VMCore/FileLogHandler.swift:6:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
4 |
5 | /// A LogHandler that writes log messages to a file
6 | public struct FileLogHandler: LogHandler, @unchecked Sendable {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 | public var metadata: Logger.Metadata = [:]
8 | public var logLevel: Logger.Level = .debug
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[108/117] Compiling VMCore LogContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/VMCore/FileLogHandler.swift:6:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
4 |
5 | /// A LogHandler that writes log messages to a file
6 | public struct FileLogHandler: LogHandler, @unchecked Sendable {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 | public var metadata: Logger.Metadata = [:]
8 | public var logLevel: Logger.Level = .debug
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[109/117] Compiling VMCore ConsoleConnection.swift
[110/117] Compiling VMCore ConsoleListener.swift
[111/117] Emitting module VMCore
/Users/admin/builder/spi-builder-workspace/Sources/VMCore/FileLogHandler.swift:6:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
4 |
5 | /// A LogHandler that writes log messages to a file
6 | public struct FileLogHandler: LogHandler, @unchecked Sendable {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 | public var metadata: Logger.Metadata = [:]
8 | public var logLevel: Logger.Level = .debug
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[112/117] Compiling VMCore CloudInit.swift
[113/117] Compiling VMCore Configuration.swift
[114/117] Compiling VMCore Runner.swift
[115/136] Compiling VM Start.swift
[116/136] Compiling VM Stop.swift
[117/136] Compiling VM TableOutput.swift
[118/136] Compiling VM VM.swift
[119/137] Compiling VM VMNameCompletion.swift
[120/137] Compiling VM List.swift
[121/137] Compiling VM RegenCloudInitISO.swift
[122/137] Compiling VM Rescue.swift
[123/137] Compiling VM Resize.swift
[124/137] Compiling VM RunDaemon.swift
[125/137] Compiling VM SSH.swift
[126/137] Compiling VM Edit.swift
[127/137] Compiling VM IP.swift
[128/137] Compiling VM Create.swift
[129/137] Compiling VM Delete.swift
[130/137] Compiling VM CloudInitUserData.swift
[131/137] Compiling VM Attach.swift
[132/137] Emitting module VM
[133/137] Compiling VM Import.swift
[134/137] Compiling VM Info.swift
[134/137] Write Objects.LinkFileList
[135/137] Linking vm
[136/137] Applying vm
Build complete! (24.79s)
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/jpsim/Yams.git
Fetching https://github.com/apple/swift-log.git
[1/11551] Fetching yams
[2/18360] Fetching yams, swift-log
[3/35887] Fetching yams, swift-log, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.66s)
[12816/18360] Fetching yams, swift-log
Fetched https://github.com/jpsim/Yams.git from cache (2.39s)
Fetched https://github.com/apple/swift-log.git from cache (2.39s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 6.2.1 (2.95s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.7.1 (0.59s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.56s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.7.1
Creating working copy for https://github.com/jpsim/Yams.git
Working copy of https://github.com/jpsim/Yams.git resolved at 6.2.1
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "yams",
"requirement" : {
"range" : [
{
"lower_bound" : "6.2.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/jpsim/Yams.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "VM",
"name" : "VM",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "vm",
"targets" : [
"VM"
],
"type" : {
"executable" : null
}
},
{
"name" : "VMCore",
"targets" : [
"VMCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "VMTests",
"module_type" : "SwiftTarget",
"name" : "VMTests",
"path" : "Tests/VMTests",
"sources" : [
"ConfigurationTests.swift",
"SocketTests.swift"
],
"target_dependencies" : [
"VMCore"
],
"type" : "test"
},
{
"c99name" : "VMCore",
"module_type" : "SwiftTarget",
"name" : "VMCore",
"path" : "Sources/VMCore",
"product_dependencies" : [
"Yams",
"Logging"
],
"product_memberships" : [
"vm",
"VMCore"
],
"sources" : [
"CloudInit.swift",
"Configuration.swift",
"ConsoleConnection.swift",
"ConsoleListener.swift",
"DiskManager.swift",
"ExitFlag.swift",
"FileLogHandler.swift",
"LogContext.swift",
"Logger.swift",
"Manager.swift",
"RescueCache.swift",
"Runner.swift",
"Socket.swift",
"Terminal.swift",
"VsockGuestAgent.swift"
],
"type" : "library"
},
{
"c99name" : "VM",
"module_type" : "SwiftTarget",
"name" : "VM",
"path" : "Sources/VM",
"product_dependencies" : [
"ArgumentParser",
"Yams",
"Logging"
],
"product_memberships" : [
"vm"
],
"sources" : [
"CloudInitUserData.swift",
"Commands/Attach.swift",
"Commands/Create.swift",
"Commands/Delete.swift",
"Commands/Edit.swift",
"Commands/IP.swift",
"Commands/Import.swift",
"Commands/Info.swift",
"Commands/List.swift",
"Commands/RegenCloudInitISO.swift",
"Commands/Rescue.swift",
"Commands/Resize.swift",
"Commands/RunDaemon.swift",
"Commands/SSH.swift",
"Commands/Start.swift",
"Commands/Stop.swift",
"TableOutput.swift",
"VM.swift",
"VMNameCompletion.swift"
],
"target_dependencies" : [
"VMCore"
],
"type" : "executable"
}
],
"tools_version" : "6.0"
}
Done.