You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bddisasm/.github/workflows/c-cpp.yml

42 lines
752 B

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build bddisasm and bdshemu
run: make -j$(nproc)
- name: Install rapidjson
uses: actions/checkout@master
with:
repository: Tencent/rapidjson
- name: Build dependencies
run: |
cd rapidjson
mkdir _build
cd _build
cmake ..
make -j$(nproc)
sudo make install
cd ..
cd ..
- name: Build disasmtool_lix
run: |
cd disasmtool_lix
mkdir _build
cd _build
cmake ..
make -j$(nproc)
cd ..
cd ..