From 3af13f3fce223207fabcf05a6f36165ed6ca14de Mon Sep 17 00:00:00 2001 From: Christian Heitman Date: Tue, 31 Oct 2023 18:13:57 -0300 Subject: [PATCH] Update workflow python --- .github/workflows/python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8c488c8b8..71149b54b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -114,7 +114,7 @@ jobs: cd .\capstone-5.0.1 mkdir build cd .\build\ - cmake -DCAPSTONE_INSTALL=On -DBUILD_SHARED_LIBS=On -DCMAKE_INSTALL_PREFIX=..\..\capstone-5.0.1-install .. + cmake -DCAPSTONE_INSTALL=On -DBUILD_SHARED_LIBS=On -DCMAKE_INSTALL_PREFIX=.\install .. cmake --build . --config Release --parallel 4 cmake --install . --config Release shell: powershell @@ -128,8 +128,8 @@ jobs: PYTHON_LIBRARY: ${{ env.pythonLocation }}\libs\${{ matrix.pylib }} Z3_INCLUDE_DIRS: ${{ github.workspace }}\z3-4.12.2-x64-win\include Z3_LIBRARIES: ${{ github.workspace }}\z3-4.12.2-x64-win\bin\libz3.lib - CAPSTONE_INCLUDE_DIRS: ${{ github.workspace }}\capstone-5.0.1-install\include - CAPSTONE_LIBRARIES: ${{ github.workspace }}\capstone-5.0.1-install\lib\capstone.lib + CAPSTONE_INCLUDE_DIRS: ${{ github.workspace }}\capstone-5.0.1\install\include + CAPSTONE_LIBRARIES: ${{ github.workspace }}\capstone-5.0.1\install\lib\capstone.lib - name: Upload uses: actions/upload-artifact@v3