1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-12-23 06:28:13 +00:00

Try to build disasmtool_lix

This should clone Tencent/rapidjson, build it, install it, and then build disasmtool_lix
This commit is contained in:
Anichitei Ionel-Cristinel 2020-07-31 17:15:50 +03:00 committed by GitHub
parent af8a0cc52f
commit 21d20ba584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,5 +13,29 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: build-bddisasm - name: Build bddisasm and bdshemu
run: make -j$(nproc) 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 ..