diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96704dd89b..eef45fb2fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/.github/workflows/docker_images.yml b/.github/workflows/docker_images.yml index 0a3448883f..da4383e199 100644 --- a/.github/workflows/docker_images.yml +++ b/.github/workflows/docker_images.yml @@ -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 @@ -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 }} @@ -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 @@ -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 }}