From 1312f0726d60f0ce4609de64d3520aae73dd1e1f Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:21:10 +0300 Subject: [PATCH] ci: Fix `make install` path --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec86c8b..8ef8b67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |