Skip to content

Commit 75d9b80

Browse files
authored
fix: rename "Grammar" optional step group to "Antlr" in d2d pipeline (#2059)
Signed-off-by: Monal-Reddy <monalreddy001@gmail.com>
1 parent 2090ea0 commit 75d9b80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scanpipe/pipelines/deploy_to_develop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,21 +250,21 @@ def map_jar_to_kotlin_source(self):
250250
project=self.project, jvm_lang=jvm.KotlinLanguage, logger=self.log
251251
)
252252

253-
@optional_step("Grammar")
253+
@optional_step("Antlr")
254254
def find_grammar_packages(self):
255255
"""Find the java package of the .g/.g4 source files."""
256256
d2d.find_jvm_packages(
257257
project=self.project, jvm_lang=jvm.GrammarLanguage, logger=self.log
258258
)
259259

260-
@optional_step("Grammar")
260+
@optional_step("Antlr")
261261
def map_grammar_to_class(self):
262262
"""Map a .class compiled file to its .g/.g4 source."""
263263
d2d.map_jvm_to_class(
264264
project=self.project, jvm_lang=jvm.GrammarLanguage, logger=self.log
265265
)
266266

267-
@optional_step("Grammar")
267+
@optional_step("Antlr")
268268
def map_jar_to_grammar_source(self):
269269
"""Map .jar files to their related source directory."""
270270
d2d.map_jar_to_jvm_source(

0 commit comments

Comments
 (0)