From ada9244bb1d43434dd311531558c70c2629ba1bc Mon Sep 17 00:00:00 2001 From: Christian Heitman Date: Tue, 31 Oct 2023 20:51:16 -0300 Subject: [PATCH] Update workflow python --- .github/workflows/python.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 49904ec87..57b358514 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -114,7 +114,7 @@ jobs: shell: powershell - name: Build Triton Python package - run: python -m build --wheel --outdir wheelhouse/windows_x86_64_tmp + run: python -m build --wheel --outdir ${{ github.workspace }}\wheelhouse\windows_x86_64_tmp env: PYTHON_VERSION: ${{ matrix.python-version }} PYTHON_INCLUDE_DIRS: ${{ env.pythonLocation }}\include @@ -124,11 +124,16 @@ jobs: CAPSTONE_INCLUDE_DIRS: ${{ github.workspace }}\capstone-4.0.2-win64\include CAPSTONE_LIBRARIES: ${{ github.workspace }}\capstone-4.0.2-win64\capstone.lib + - name: Debug + run: | + ls ${{ github.workspace }}\wheelhouse + shell: powershell + - name: Repair wheel package run: | python -m pip install delvewheel - delvewheel repair --add-path ${{ github.workspace }}\z3-4.12.2-x64-win\bin --wheel-dir .\wheelhouse\windows_x86_64 -v .\wheelhouse\windows_x86_64_tmp\triton_library-${{ env.package-version }}-${{ matrix.pycp }}-win_amd64.whl + delvewheel repair --add-path ${{ github.workspace }}\z3-4.12.2-x64-win\bin --wheel-dir ${{ github.workspace }}\wheelhouse\windows_x86_64 -v ${{ github.workspace }}\wheelhouse\windows_x86_64_tmp\triton_library-${{ env.package-version }}-${{ matrix.pycp }}-win_amd64.whl - name: Upload uses: actions/upload-artifact@v3