Skip to content

Commit

Permalink
Make CI build SwiftParserCLI
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWong12 committed Aug 20, 2023
1 parent 4f57cf7 commit d083598
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ struct Build: ParsableCommand, BuildCommand {
func run() throws {
try buildTarget(packageDir: Paths.packageDir, targetName: "SwiftSyntax-all")
try buildTarget(packageDir: Paths.examplesDir, targetName: "Examples-all")
try buildTarget(packageDir: Paths.swiftParserCliDir, targetName: "swift-parser-cli")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ enum Paths {
packageDir
.appendingPathComponent("Examples")
}

static var swiftParserCliDir: URL {
packageDir
.appendingPathComponent("SwiftParserCLI")
}

static var codeGenerationDir: URL {
packageDir
Expand Down

0 comments on commit d083598

Please sign in to comment.