42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
name: build-crpc
|
|
on:
|
|
- push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
build_type:
|
|
- Debug
|
|
- Release
|
|
toolchain:
|
|
- mingw-w64-x86_64.toolchain.cmake
|
|
- host.toolchain.cmake
|
|
steps:
|
|
- name: Install Dependencies
|
|
run: |
|
|
apt-get update -y
|
|
apt-get install -y \
|
|
cmake make g++ libssl-dev pkg-config autoconf libtool libantlr4-runtime-dev
|
|
- 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
|
|
cd ${{ github.workspace }}/src/grammar
|
|
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoLexer.g4
|
|
java -jar antlr.jar -Dlanguage=Cpp -o ./ ProtoParser.g4
|
|
- name: Configure CRPC
|
|
run: |
|
|
cd ${{ github.workspace }}
|
|
cmake . -Bbuild -DCMAKE_TOOLCHAIN_FILE=toolchains/${{ matrix.toolchain }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_VERBOSE_MAKEFILE=ON
|
|
|
|
- name: Build CRPC
|
|
run: |
|
|
cmake --build build --config ${{ matrix.build_type }} --target all -- -j `nproc`
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: crpc-${{ matrix.toolchain }}-${{ matrix.build_type }}
|
|
path: ${{ github.workspace }}/build/crpc
|