Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build_linux_wheel/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ runs:
shell: bash
run: |
echo "ARM BUILD: ${{ inputs.arm-build }}"
- name: Clean old wheels
shell: bash
run: |
# Ensure no cached pylance wheels linger across cache restores
rm -f python/target/wheels/pylance-*.whl || true
- name: Build x86_64 Manylinux2014 wheel
if: ${{ inputs.arm-build == 'false' && inputs.manylinux == '2_17' }}
uses: PyO3/maturin-action@v1
Expand Down