Skip to content

Commit

Permalink
ci: Fix make install path
Browse files Browse the repository at this point in the history
  • Loading branch information
ianichitei authored Sep 17, 2024
1 parent 1b46174 commit 1312f07
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 1312f07

Please sign in to comment.