fix cmake version required
Some checks failed
build-crpc / build (Release, mingw-w64-x86_64.toolchain.cmake) (push) Failing after 39s
build-crpc / build (Debug, host.toolchain.cmake) (push) Failing after 12m18s
build-crpc / build (Debug, mingw-w64-x86_64.toolchain.cmake) (push) Failing after 12m21s
build-crpc / build (Release, host.toolchain.cmake) (push) Failing after 15m4s

This commit is contained in:
tqcq 2023-12-03 08:34:17 +08:00
parent b414c019d3
commit c910b747ef
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ jobs:
wget -q -t 3 https://www.antlr.org/download/antlr-4.13.1-complete.jar -O antlr.jar
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoLexer.g4
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoParser.g4
ls -lh
- name: Configure CRPC
run: |
cd ${{ github.workspace }}

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.26)
cmake_minimum_required(VERSION 3.10)
project(crpc)
find_package(antlr4-runtime CONFIG REQUIRED)