fix wget
Some checks failed
build-crpc / build (Debug, host.toolchain.cmake) (push) Waiting to run
build-crpc / build (Release, host.toolchain.cmake) (push) Waiting to run
build-crpc / build (Release, mingw-w64-x86_64.toolchain.cmake) (push) Waiting to run
build-crpc / build (Debug, mingw-w64-x86_64.toolchain.cmake) (push) Failing after 31s

This commit is contained in:
tqcq 2023-12-03 08:29:31 +08:00
parent cd3661fa58
commit 3b598482e9

View File

@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- name: Generate Lexer and Parser
run: |
wget https://www.antlr.org/download/antlr-4.13.1-complete.jar -o antlr.jar
wget -q -t 3 https://www.antlr.org/download/antlr-4.13.1-complete.jar -O antlr.jar
cd ${{ github.workspace }}/src/grammar
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoLexer.g4
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoParser.g4