Skip to content

Commit 264f676

Browse files
committed
Make CI build SwiftParserCLI
1 parent bdca1a4 commit 264f676

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/commands/Build.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ struct Build: ParsableCommand, BuildCommand {
2626
func run() throws {
2727
try buildTarget(packageDir: Paths.packageDir, targetName: "SwiftSyntax-all")
2828
try buildTarget(packageDir: Paths.examplesDir, targetName: "Examples-all")
29+
try buildTarget(packageDir: Paths.swiftParserCliDir, targetName: "swift-parser-cli")
2930
try buildEditorExtension()
3031
}
3132

SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/common/Paths.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ enum Paths {
3232
.appendingPathComponent("Examples")
3333
}
3434

35+
static var swiftParserCliDir: URL {
36+
packageDir
37+
.appendingPathComponent("SwiftParserCLI")
38+
}
39+
3540
static var codeGenerationDir: URL {
3641
packageDir
3742
.appendingPathComponent("CodeGeneration")

0 commit comments

Comments
 (0)