Try to build disasmtool_lix

This should clone Tencent/rapidjson, build it, install it, and then build disasmtool_lix
pull/13/head
Anichitei Ionel-Cristinel 4 years ago committed by GitHub
parent af8a0cc52f
commit 21d20ba584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,5 +13,29 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: build-bddisasm
- 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 ..

Loading…
Cancel
Save