Build Information
Successful build of SPX, reference trunk (64f6e0
), with Swift 6.2 (beta) for macOS (SPM) on 23 Jun 2025 05:45:49 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/danielsincere/SPX.git
Reference: trunk
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/danielsincere/SPX
* branch trunk -> FETCH_HEAD
* [new branch] trunk -> origin/trunk
HEAD is now at 64f6e04 Release management (#11)
Cloned https://github.com/danielsincere/SPX.git
Revision (git rev-parse @):
64f6e04886f99b865b05dcd889490c91633d1435
SUCCESS checkout https://github.com/danielsincere/SPX.git at trunk
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/danielsincere/SPX.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[0/10] Write sources
[1/10] Write GenerateTemplatesTool-tool-entitlement.plist
[4/10] Write sources
[5/10] Compiling CSystem shims.c
[6/10] Write swift-version-1EA4D86E10B52AF.txt
[8/40] Compiling ArgumentParserToolInfo ToolInfo.swift
[9/40] Emitting module ArgumentParserToolInfo
[10/79] Emitting module SystemPackage
[11/82] Compiling ArgumentParser Argument.swift
[12/82] Compiling ArgumentParser CommandConfiguration.swift
[13/82] Compiling ArgumentParser CommandGroup.swift
[14/82] Compiling ArgumentParser CompletionsGenerator.swift
[15/82] Compiling ArgumentParser FishCompletionsGenerator.swift
[16/82] Compiling ArgumentParser ZshCompletionsGenerator.swift
[17/82] Compiling ArgumentParser EnumerableFlag.swift
[18/82] Compiling ArgumentParser ExpressibleByArgument.swift
[19/82] Compiling ArgumentParser NameSpecification.swift
[20/82] Compiling ArgumentParser ParsableCommand.swift
[21/82] Compiling ArgumentParser ArgumentDecoder.swift
[22/82] Compiling ArgumentParser BashCompletionsGenerator.swift
[23/82] Compiling ArgumentParser ArgumentSet.swift
[24/82] Compiling ArgumentParser CommandParser.swift
[25/82] Compiling ArgumentParser InputKey.swift
[26/82] Compiling ArgumentParser Errors.swift
[27/82] Compiling ArgumentParser Flag.swift
[28/82] Compiling ArgumentParser ArgumentDefinition.swift
[29/82] Compiling ArgumentParser ArgumentHelp.swift
[30/82] Compiling ArgumentParser ArgumentVisibility.swift
[31/82] Compiling ArgumentParser CompletionKind.swift
[32/82] Compiling ArgumentParser HelpCommand.swift
[33/82] Compiling ArgumentParser ParsableArguments.swift
[34/82] Compiling ArgumentParser ParsableArgumentsValidation.swift
[35/82] Compiling ArgumentParser ParserError.swift
[36/82] Compiling ArgumentParser SplitArguments.swift
[37/82] Compiling ArgumentParser DumpHelpGenerator.swift
[38/82] Compiling SystemPackage Util+StringArray.swift
[39/82] Compiling SystemPackage Util.swift
[40/82] Compiling SystemPackage UtilConsumers.swift
[41/82] Compiling ArgumentParser InputOrigin.swift
[42/82] Compiling ArgumentParser Name.swift
[43/82] Compiling ArgumentParser Parsed.swift
[44/82] Compiling ArgumentParser ParsedValues.swift
[50/86] Emitting module ArgumentParser
[51/86] Compiling ArgumentParser Platform.swift
[52/86] Compiling ArgumentParser SequenceExtensions.swift
[53/86] Compiling ArgumentParser StringExtensions.swift
[54/86] Compiling ArgumentParser Tree.swift
[72/86] Compiling ArgumentParser HelpGenerator.swift
[73/86] Compiling ArgumentParser MessageInfo.swift
[74/86] Compiling ArgumentParser UsageGenerator.swift
[75/86] Compiling ArgumentParser CollectionExtensions.swift
[84/88] Emitting module GenerateTemplatesTool
[85/88] Compiling GenerateTemplatesTool GenerateTemplatesTool.swift
[85/88] Write Objects.LinkFileList
[86/88] Linking GenerateTemplatesTool-tool
[87/88] Applying GenerateTemplatesTool-tool
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:8:40: warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
6 | func createBuildCommands(context: PackagePlugin.PluginContext, target: PackagePlugin.Target) async throws -> [PackagePlugin.Command] {
7 |
8 | let templatesDir = context.package.directory.appending(subpath: "templates")
| |- warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
| `- note: use 'directoryURL' instead
9 | let enumerator = FileManager.default.enumerator(atPath: templatesDir.string)
10 |
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:8:50: warning: 'appending(subpath:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
6 | func createBuildCommands(context: PackagePlugin.PluginContext, target: PackagePlugin.Target) async throws -> [PackagePlugin.Command] {
7 |
8 | let templatesDir = context.package.directory.appending(subpath: "templates")
| `- warning: 'appending(subpath:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
9 | let enumerator = FileManager.default.enumerator(atPath: templatesDir.string)
10 |
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:9:74: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
7 |
8 | let templatesDir = context.package.directory.appending(subpath: "templates")
9 | let enumerator = FileManager.default.enumerator(atPath: templatesDir.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
10 |
11 | let inputFiles = paths(fromEnumerator: enumerator!).map { path in
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:12:20: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
10 |
11 | let inputFiles = paths(fromEnumerator: enumerator!).map { path in
12 | templatesDir.appending(path)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:15:93: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
13 | }
14 |
15 | let templateDirNames = try FileManager.default.contentsOfDirectory(atPath: templatesDir.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
16 |
17 | return [
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:18:8: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
16 |
17 | return [
18 | .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
19 | displayName: "GenerateTemplatesPlugin",
20 | executable: try context.tool(named: "GenerateTemplatesTool").path,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:20:70: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
18 | .buildCommand(
19 | displayName: "GenerateTemplatesPlugin",
20 | executable: try context.tool(named: "GenerateTemplatesTool").path,
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
21 | arguments: [
22 | templatesDir.string,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:22:24: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
20 | executable: try context.tool(named: "GenerateTemplatesTool").path,
21 | arguments: [
22 | templatesDir.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
23 | context.pluginWorkDirectory.string
24 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:23:19: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
21 | arguments: [
22 | templatesDir.string,
23 | context.pluginWorkDirectory.string
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
24 | ],
25 | inputFiles: inputFiles,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:23:39: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
21 | arguments: [
22 | templatesDir.string,
23 | context.pluginWorkDirectory.string
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
24 | ],
25 | inputFiles: inputFiles,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:27:19: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
25 | inputFiles: inputFiles,
26 | outputFiles: [
27 | context.pluginWorkDirectory.appending("Templates.swift"),
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
28 | ] + templateDirNames.map({ templateName in
29 | context.pluginWorkDirectory.appending("\(templateName)Template.swift")
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:27:39: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
25 | inputFiles: inputFiles,
26 | outputFiles: [
27 | context.pluginWorkDirectory.appending("Templates.swift"),
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
28 | ] + templateDirNames.map({ templateName in
29 | context.pluginWorkDirectory.appending("\(templateName)Template.swift")
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:29:19: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
27 | context.pluginWorkDirectory.appending("Templates.swift"),
28 | ] + templateDirNames.map({ templateName in
29 | context.pluginWorkDirectory.appending("\(templateName)Template.swift")
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
30 | })
31 | ),
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateTemplatesPlugin/GenerateTemplatesPlugin.swift:29:39: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
27 | context.pluginWorkDirectory.appending("Templates.swift"),
28 | ] + templateDirNames.map({ templateName in
29 | context.pluginWorkDirectory.appending("\(templateName)Template.swift")
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
30 | })
31 | ),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin GenerateTemplatesPlugin
[2/2] Compiling plugin GenerateManual
Building for debugging...
[2/30] Write sources
[4/30] Write spx-entitlement.plist
[5/30] Write sources
[8/30] Write GenerateTemplatesTool-tool-entitlement.plist
[10/30] Write GenerateTemplatesTool-entitlement.plist
[11/30] Write sources
[16/30] Compiling CSystem shims.c
[18/30] Write swift-version-1EA4D86E10B52AF.txt
[19/71] Write Objects.LinkFileList
[21/71] Compiling ArgumentParserToolInfo ToolInfo.swift
[22/71] Emitting module ArgumentParserToolInfo
[23/110] Compiling ArgumentParser ParsableArgumentsValidation.swift
[24/110] Compiling ArgumentParser ParsableCommand.swift
[25/110] Compiling ArgumentParser ArgumentDecoder.swift
[26/110] Compiling ArgumentParser ParserError.swift
[27/110] Compiling ArgumentParser SplitArguments.swift
[28/110] Compiling ArgumentParser DumpHelpGenerator.swift
[29/113] Compiling ArgumentParser ArgumentHelp.swift
[30/113] Compiling ArgumentParser ArgumentVisibility.swift
[31/113] Compiling ArgumentParser CompletionKind.swift
[31/113] Linking GenerateTemplatesTool-tool
[32/113] Applying GenerateTemplatesTool-tool
[34/113] Compiling ArgumentParser UsageGenerator.swift
[35/113] Compiling ArgumentParser CollectionExtensions.swift
[36/113] Compiling ArgumentParser ParsableArguments.swift
[37/113] Compiling ArgumentParser Argument.swift
[38/113] Compiling ArgumentParser HelpGenerator.swift
[39/113] Compiling ArgumentParser MessageInfo.swift
[40/113] Emitting module SystemPackage
[41/113] Compiling ArgumentParser HelpCommand.swift
[42/113] Compiling ArgumentParser ArgumentDefinition.swift
[43/113] Compiling ArgumentParser ArgumentSet.swift
[44/113] Compiling ArgumentParser CommandParser.swift
[45/113] Compiling ArgumentParser InputKey.swift
[46/113] Compiling ArgumentParser InputOrigin.swift
[47/113] Compiling ArgumentParser CompletionsGenerator.swift
[48/113] Compiling ArgumentParser FishCompletionsGenerator.swift
[49/113] Compiling ArgumentParser ZshCompletionsGenerator.swift
[50/113] Compiling ArgumentParser Errors.swift
[51/113] Compiling ArgumentParser Flag.swift
[52/113] Compiling ArgumentParser BashCompletionsGenerator.swift
Directory SPX
name Package.resolved
Directory SPX
name .gitignore
Directory SPX
name Package.swift
Directory SPX/Sources/date
name main.swift
Directory SPX
name .env.sample
Directory SPX
name README.md
Directory SPX
name Package.resolved
Directory SPX
name .gitignore
Directory SPX
name Package.swift
Directory SPX/Sources/appstore
name EnvironmentKeys.swift
Directory SPX/Sources/appstore
name BuildNumberAction.swift
Directory SPX/Sources/appstore
name AppStoreScript.swift
Directory SPX/Sources/appicon
name main.swift
Directory SPX
name AppIcon.svg
[52/113] GenerateTemplatesPlugin
[53/113] Write sources
[55/113] Compiling SystemPackage Util+StringArray.swift
[56/113] Compiling SystemPackage Util.swift
[57/113] Compiling SystemPackage UtilConsumers.swift
[62/113] Compiling ArgumentParser CommandConfiguration.swift
[63/113] Compiling ArgumentParser CommandGroup.swift
[64/113] Compiling ArgumentParser EnumerableFlag.swift
[65/113] Compiling ArgumentParser ExpressibleByArgument.swift
[66/113] Compiling ArgumentParser NameSpecification.swift
[67/113] Compiling ArgumentParser Option.swift
[68/113] Compiling ArgumentParser OptionGroup.swift
[69/113] Compiling ArgumentParser AsyncParsableCommand.swift
[70/117] Compiling ArgumentParser Platform.swift
[71/117] Compiling ArgumentParser SequenceExtensions.swift
[72/117] Compiling ArgumentParser StringExtensions.swift
[73/117] Compiling ArgumentParser Tree.swift
[87/117] Emitting module ArgumentParser
[101/119] Emitting module GenerateTemplatesTool
[102/119] Compiling GenerateTemplatesTool GenerateTemplatesTool.swift
[102/119] Write Objects.LinkFileList
[103/119] Linking GenerateTemplatesTool
[104/119] Applying GenerateTemplatesTool
[106/119] Compiling Rainbow Color.swift
[109/119] Emitting module Rainbow
[110/120] Compiling Rainbow OutputTarget.swift
[111/120] Compiling Rainbow ModesExtractor.swift
[112/120] Compiling Rainbow ColorApproximation.swift
[113/120] Compiling Rainbow String+Rainbow.swift
[114/120] Compiling Rainbow ControlCode.swift
[115/120] Compiling Rainbow Rainbow.swift
[116/120] Compiling Rainbow StringGenerator.swift
[117/120] Compiling Rainbow Style.swift
[118/134] Compiling Sh String.asTrimmedLines.swift
[119/135] Compiling Sh Sink.swift
[120/135] Compiling Sh shq.swift
[121/135] Compiling Sh Data.asJSON.swift
[122/135] Compiling Sh Data.asTrimmedString.swift
[123/135] Emitting module Sh
[124/135] Compiling Sh PipeBuffer.swift
[125/135] Compiling Sh Errors.swift
[126/135] Compiling Sh Process.runReturningTrimmedString.swift
[127/135] Compiling Sh Process.terminationError.swift
[128/135] Compiling Sh Process.init.swift
[129/135] Compiling Sh Process.runRedirectingAllOutput.swift
[130/135] Compiling Sh Process.runReturningAllOutput.swift
[131/135] Compiling Sh Process.runReturningData.swift
[132/135] Compiling Sh sh.swift
[133/155] Emitting module SPXLib
[134/157] Compiling SPXLib BuildCommand.swift
[135/157] Compiling SPXLib ExecCommand.swift
[136/157] Compiling SPXLib simpleTemplate.swift
[137/157] Compiling SPXLib iosTemplate.swift
[138/157] Compiling SPXLib SwiftPackageDescription.Errors.swift
[139/157] Compiling SPXLib AddCommand.swift
[140/157] Compiling SPXLib ListCommand.swift
[141/157] Compiling SPXLib ScaffoldFile.swift
[142/157] Compiling SPXLib ExecCommand.Errors.swift
[143/157] Compiling SPXLib InitCommand.Errors.swift
[144/157] Compiling SPXLib SwiftPackageDescription.swift
[145/157] Compiling SPXLib Runner.swift
[146/157] Compiling SPXLib HelpCommand.swift
[147/157] Compiling SPXLib InitCommand.swift
[148/157] Compiling SPXLib Announcer.swift
[149/157] Compiling SPXLib AddCommand.Errors.swift
[150/157] Compiling SPXLib BuildCommand.Errors.swift
[151/157] Compiling SPXLib version.swift
[152/157] Compiling SPXLib Templates.swift
[153/157] Compiling SPXLib Running.swift
[154/157] Compiling SPXLib SPX.swift
[155/159] Compiling spx main.swift
[156/159] Emitting module spx
[156/159] Write Objects.LinkFileList
[157/159] Linking spx
[158/159] Applying spx
Build complete! (24.95s)
Fetching https://github.com/DanielSincere/Sh.git
Fetching https://github.com/onevcat/Rainbow
Fetching https://github.com/apple/swift-system
Fetching https://github.com/apple/swift-argument-parser.git
[1/1196] Fetching rainbow
[13/5632] Fetching rainbow, swift-system
[306/6491] Fetching rainbow, swift-system, sh
[6492/21871] Fetching rainbow, swift-system, sh, swift-argument-parser
Fetched https://github.com/DanielSincere/Sh.git from cache (1.51s)
Fetched https://github.com/apple/swift-system from cache (1.51s)
Fetched https://github.com/onevcat/Rainbow from cache (1.51s)
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.51s)
Computing version for https://github.com/DanielSincere/Sh.git
Computed https://github.com/DanielSincere/Sh.git at 1.3.0 (1.98s)
Computing version for https://github.com/onevcat/Rainbow
Computed https://github.com/onevcat/Rainbow at 4.1.0 (2.59s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (0.41s)
Computing version for https://github.com/apple/swift-system
Computed https://github.com/apple/swift-system at 1.5.0 (0.41s)
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.5.1
Creating working copy for https://github.com/DanielSincere/Sh.git
Working copy of https://github.com/DanielSincere/Sh.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-system
Working copy of https://github.com/apple/swift-system resolved at 1.5.0
Creating working copy for https://github.com/onevcat/Rainbow
Working copy of https://github.com/onevcat/Rainbow resolved at 4.1.0
Build complete.
{
"dependencies" : [
{
"identity" : "rainbow",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/onevcat/Rainbow"
},
{
"identity" : "sh",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/DanielSincere/Sh.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
}
],
"manifest_display_name" : "SPX",
"name" : "SPX",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "spx",
"targets" : [
"spx"
],
"type" : {
"executable" : null
}
},
{
"name" : "GenerateTemplatesTool",
"targets" : [
"GenerateTemplatesTool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "spx",
"module_type" : "SwiftTarget",
"name" : "spx",
"path" : "Sources/spx",
"product_memberships" : [
"spx"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SPXLib"
],
"type" : "executable"
},
{
"c99name" : "SPXTests",
"module_type" : "SwiftTarget",
"name" : "SPXTests",
"path" : "Tests/SPXTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SPXTests/Fixtures",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AddCommandTests.swift",
"BuildCommandTests.swift",
"ExecCommandTests.swift",
"ListCommandTests.swift",
"support/FakeRunner.swift",
"support/Fixtures.swift",
"support/ParsingFakeRunner.swift"
],
"target_dependencies" : [
"SPXLib"
],
"type" : "test"
},
{
"c99name" : "SPXLib",
"module_type" : "SwiftTarget",
"name" : "SPXLib",
"path" : "Sources/SPXLib",
"product_dependencies" : [
"Sh",
"Rainbow"
],
"product_memberships" : [
"spx"
],
"sources" : [
"Announcer/Announcer.swift",
"Announcer/LocalizedErrors/AddCommand.Errors.swift",
"Announcer/LocalizedErrors/BuildCommand.Errors.swift",
"Announcer/LocalizedErrors/ExecCommand.Errors.swift",
"Announcer/LocalizedErrors/InitCommand.Errors.swift",
"Announcer/LocalizedErrors/SwiftPackageDescription.Errors.swift",
"Commands/AddCommand.swift",
"Commands/BuildCommand.swift",
"Commands/ExecCommand.swift",
"Commands/HelpCommand.swift",
"Commands/InitCommand.swift",
"Commands/ListCommand.swift",
"Commands/models/ScaffoldFile.swift",
"Commands/models/SwiftPackageDescription.swift",
"Runner/Runner.swift",
"Runner/Running.swift",
"SPX.swift",
"version.swift"
],
"target_dependencies" : [
"GenerateTemplatesPlugin"
],
"type" : "library"
},
{
"c99name" : "GenerateTemplatesTool",
"module_type" : "SwiftTarget",
"name" : "GenerateTemplatesTool",
"path" : "Sources/GenerateTemplatesTool",
"product_dependencies" : [
"ArgumentParser",
"SystemPackage"
],
"product_memberships" : [
"spx",
"GenerateTemplatesTool"
],
"sources" : [
"GenerateTemplatesTool.swift"
],
"type" : "executable"
},
{
"c99name" : "GenerateTemplatesPlugin",
"module_type" : "PluginTarget",
"name" : "GenerateTemplatesPlugin",
"path" : "Plugins/GenerateTemplatesPlugin",
"plugin_capability" : {
"type" : "buildTool"
},
"product_memberships" : [
"spx"
],
"sources" : [
"GenerateTemplatesPlugin.swift"
],
"target_dependencies" : [
"GenerateTemplatesTool"
],
"type" : "plugin"
}
],
"tools_version" : "6.0"
}
Done.