1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 13:38:07 +00:00
bddisasm/.github/workflows/c-cpp.yml
Anichitei Ionel-Cristinel 374dd532e6
Try to build pydis
2020-07-31 17:25:43 +03:00

48 lines
875 B
YAML

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
path: 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 ..
- name: Build pydis
run: |
cd pydis
python3 setup.py build
cd ..