From fa3d68add2c31bfd52abb7e1723874829fcc09b3 Mon Sep 17 00:00:00 2001 From: Ken Domino Date: Wed, 12 Feb 2025 06:40:08 -0500 Subject: [PATCH] Remove "official" from testing to avoid problems. Remove unnecessary "antlr4 -v" call. --- _scripts/templates/Java/st.build.ps1 | 2 -- _scripts/test.ps1 | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/_scripts/templates/Java/st.build.ps1 b/_scripts/templates/Java/st.build.ps1 index 6cf4cece3e..98fa02dc73 100644 --- a/_scripts/templates/Java/st.build.ps1 +++ b/_scripts/templates/Java/st.build.ps1 @@ -12,8 +12,6 @@ npm i antlr-ng -# Download Antlr4 Jar. -antlr4 -v $version # Run tool. $(& tsx $HOME/antlr-ng/cli/runner.ts --encoding -Dlanguage=Java } > ; $compile_exit_code = $LASTEXITCODE) | Write-Host diff --git a/_scripts/test.ps1 b/_scripts/test.ps1 index a2d4a461bd..95a2aa2a36 100644 --- a/_scripts/test.ps1 +++ b/_scripts/test.ps1 @@ -321,7 +321,7 @@ function Test-AllGrammars { Write-Host "previouscommit = $PreviousCommit" Write-Host "CurrentCommit = $CurrentCommit" - $generators = @( "antlr-ng" , "official" ) + $generators = @( "antlr-ng" ) $grammars = Get-GrammarsNeedsTest -PreviousCommit $PreviousCommit -CurrentCommit $CurrentCommit -Target $Target