Skip to content

Commit

Permalink
fixing wheel path
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Pisal <[email protected]>
  • Loading branch information
sacpis committed Dec 20, 2024
1 parent 3fd1621 commit 437020c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,13 @@ jobs:
- name: Build qutip Wheel
run: |
mkdir -p wheelhouse
python -m pip wheel qutip --wheel-dir=./wheelhouse
ls -lh ./wheelhouse
python -m pip wheel qutip --wheel-dir=/tmp/wheels
- name: Upload Wheel Artifact
uses: actions/upload-artifact@v4
with:
name: qutip-wheel-linux-${{ matrix.platform }}
path: ./wheelhouse
path: /tmp/wheels
retention-days: 7

docker_image:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: qutip-wheel-${{ env.transformed_platform }}
path: ./wheelhouse
path: /tmp/wheels

- name: Build cuda-quantum-dev image (debug)
id: docker_build
Expand All @@ -341,7 +341,7 @@ jobs:
file: ./docker/build/cudaq.dev.Dockerfile
build-args: |
base_image=${{ steps.prereqs.outputs.base_image }}
QUTIP_WHEEL=./wheelhouse/qutip*.whl
QUTIP_WHEEL=/tmp/wheels/qutip*.whl
install="CMAKE_BUILD_TYPE=Debug"
git_source_sha=${{ github.sha }}
tags: ${{ steps.metadata.outputs.tags }}
Expand Down Expand Up @@ -605,7 +605,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: qutip-wheel-${{ env.transformed_platform }}
path: ./wheelhouse
path: /tmp/wheels

- name: Build cuda-quantum image
id: cudaq_build
Expand All @@ -617,7 +617,7 @@ jobs:
build-args: |
cudaqdev_image=${{ steps.prereqs.outputs.dev_image_name }}@${{ steps.release_build.outputs.digest }}
base_image=${{ steps.prereqs.outputs.base_image }}
QUTIP_WHEEL=./wheelhouse/qutip*.whl
QUTIP_WHEEL=/tmp/wheels/qutip*.whl
release_version=${{ steps.prereqs.outputs.image_tag }}
tags: ${{ steps.cudaq_metadata.outputs.tags }}
labels: ${{ steps.cudaq_metadata.outputs.labels }}
Expand Down

0 comments on commit 437020c

Please sign in to comment.