Skip to content

Commit

Permalink
fixup build commands
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Feb 10, 2025
1 parent fbae169 commit fb33007
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/llvmlite_win-64_wheel_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ jobs:
- name: Install build dependencies
run: |
if [ "${{ inputs.llvmdev_run_id }}" != "" ]; then
conda install -c file:///${{ env.LOCAL_LLVMDEV_ARTIFACT_PATH }} llvmdev cmake libxml2 --no-deps
CHAN="-c file:///${{ env.LOCAL_LLVMDEV_ARTIFACT_PATH }}"
else
conda install -c ${{ env.CONDA_CHANNEL_NUMBA }} llvmdev=${{ env.FALLBACK_LLVMDEV_VERSION }} cmake libxml2
CHAN="-c ${{ env.CONDA_CHANNEL_NUMBA }}"
fi
conda install $CHAN llvmdev=${{ env.FALLBACK_LLVMDEV_VERSION }} cmake libxml2 python-build
- name: Build wheel
run: python setup.py bdist_wheel
run: python -m build

- name: Upload llvmlite wheel
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit fb33007

Please sign in to comment.