@@ -165,16 +165,7 @@ jobs:
165165 driver-opts : |
166166 network=host
167167 image=moby/buildkit:v0.19.0
168-
169- # FIXME: remove this before merging to public repo
170- - name : Start private PyPI server
171- if : github.event.repository.private == true
172- id : pypi_server
173- uses : ./.github/actions/start-pypi-server
174- with :
175- release_name : ' cuquantum-25.03'
176- port : 8080
177-
168+
178169 - name : Build Open MPI
179170 id : docker_build
180171 uses : docker/build-push-action@v5
@@ -604,15 +595,6 @@ jobs:
604595 run : |
605596 docker run --privileged multiarch/qemu-user-static:latest --reset -p yes --credential yes
606597
607- # FIXME: remove this before merging to public repo
608- - name : Start private PyPI server
609- if : github.event.repository.private == true
610- id : pypi_server
611- uses : ./.github/actions/start-pypi-server
612- with :
613- release_name : ' cuquantum-25.03'
614- port : 8080
615-
616598 - name : Build cuda-quantum image
617599 id : cudaq_build
618600 if : success() && !cancelled()
@@ -714,15 +696,6 @@ jobs:
714696 key : ${{ needs.cudaq_image.outputs.tar_cache }}
715697 fail-on-cache-miss : true
716698
717- # FIXME: remove this before merging to public repo
718- - name : Start private PyPI server
719- if : github.event.repository.private == true
720- id : pypi_server
721- uses : ./.github/actions/start-pypi-server
722- with :
723- release_name : ' cuquantum-25.03'
724- port : 8080
725-
726699 - name : Build documentation
727700 id : docs_build
728701 run : |
@@ -751,8 +724,7 @@ jobs:
751724 # Unfortunately, we need to install cuquantum for docs generation to work properly,
752725 # since using mock imports in the autodocs configuration doesn't work properly.
753726 # See also https://github.com/sphinx-doc/sphinx/issues/11211.
754- # FIXME: remove extra-index-url before merging to public repo
755- docker exec cuda-quantum-dev bash -c "python3 -m pip install cuquantum-python-cu12~=25.03 --extra-index-url ${{ steps.pypi_server.outputs.local_pypi_server_url }}"
727+ docker exec cuda-quantum-dev bash -c "python3 -m pip install cuquantum-python-cu12~=25.03"
756728
757729 (docker exec cuda-quantum-dev bash -c "export $docs_version && bash scripts/build_docs.sh" && built=true) || built=false
758730 if $built; then docker cp cuda-quantum-dev:"/usr/local/cudaq/docs/." docs; \
0 commit comments