mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-12-22 22:18:09 +00:00
Fix build
This commit is contained in:
parent
24234eb097
commit
2c3535754f
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
@ -30,13 +30,6 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build bddisasm and bdshemu
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake .. -DINCLUDE_TOOL=y -DCMAKE_INSTALL_PREFIX=/usr
|
|
||||||
make bddisasm bdshemu
|
|
||||||
cd -
|
|
||||||
- name: Install rapidjson
|
- name: Install rapidjson
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
with:
|
with:
|
||||||
@ -52,6 +45,13 @@ jobs:
|
|||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
cd ..
|
cd ..
|
||||||
|
- name: Build bddisasm and bdshemu
|
||||||
|
run: |
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake .. -DINCLUDE_TOOL=y -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
|
make bddisasm bdshemu
|
||||||
|
cd -
|
||||||
- name: Build disasmtool_lix
|
- name: Build disasmtool_lix
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
@ -67,6 +67,12 @@ jobs:
|
|||||||
cd pybddisasm
|
cd pybddisasm
|
||||||
python3 setup.py build
|
python3 setup.py build
|
||||||
cd ..
|
cd ..
|
||||||
|
- name: Create package
|
||||||
|
if: ${{ github.event_name == 'release' }}
|
||||||
|
run: |
|
||||||
|
cd build
|
||||||
|
make package
|
||||||
|
cd -
|
||||||
- name: Release
|
- name: Release
|
||||||
if: ${{ github.event_name == 'release' }}
|
if: ${{ github.event_name == 'release' }}
|
||||||
uses: AButler/upload-release-assets@v2.0
|
uses: AButler/upload-release-assets@v2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user