1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-21 23:18:09 +00:00

ci: Fix make install path

This commit is contained in:
Anichitei Ionel-Cristinel 2024-09-17 15:21:10 +03:00 committed by GitHub
parent 1b46174e00
commit 1312f0726d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,10 @@ jobs:
run: python3 ./tests/main.py --disasm ./build/${{ matrix.preset }}/disasmtool/disasmtool --conf ./bdshemu_test/conf-x86.json
- name: Install
if: ${{ matrix.preset == 'release' }}
run: make -f ./build/${{ matrix.preset }} install
run: |
cd ./build/${{ matrix.preset }}
make install
cd -
- name: Build pybddisasm
if: ${{ matrix.preset == 'release' }}
run: |