@@ -205,7 +205,7 @@ jobs:
205205 # There are currently no multi-platform manylinux images available.
206206 # See https://github.com/pypa/manylinux/issues/1306.
207207 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
208- cuda_version : ["12.6"]
208+ cuda_version : ["12.6", "13.0" ]
209209 fail-fast : false
210210 uses : ./.github/workflows/dev_environment.yml
211211 secrets :
@@ -237,7 +237,7 @@ jobs:
237237 strategy :
238238 matrix :
239239 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
240- cuda_version : ["12.6"]
240+ cuda_version : ["12.6", "13.0" ]
241241 fail-fast : false
242242 uses : ./.github/workflows/dev_environment.yml
243243 secrets :
@@ -268,7 +268,7 @@ jobs:
268268 strategy :
269269 matrix :
270270 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
271- cuda_version : ["12.6"]
271+ cuda_version : ["12.6", "13.0" ]
272272 fail-fast : false
273273 uses : ./.github/workflows/dev_environment.yml
274274 secrets :
@@ -354,7 +354,7 @@ jobs:
354354 strategy :
355355 matrix :
356356 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
357- cuda_version : ["12.6"]
357+ cuda_version : ["12.6", "13.0" ]
358358 fail-fast : false
359359 uses : ./.github/workflows/dev_environment.yml
360360 secrets :
@@ -402,7 +402,7 @@ jobs:
402402 strategy :
403403 matrix :
404404 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
405- cuda_version : ["12.6"]
405+ cuda_version : ["12.6", "13.0" ]
406406 fail-fast : false
407407 uses : ./.github/workflows/docker_images.yml
408408 secrets :
@@ -443,7 +443,7 @@ jobs:
443443 runs-on : ubuntu-latest
444444 strategy :
445445 matrix :
446- cuda : ["12.6"]
446+ cuda : ["12.6", "13.0" ]
447447
448448 environment : ghcr-deployment
449449
@@ -666,7 +666,7 @@ jobs:
666666 STITCHED_JSON='${{ needs.aggregate_stitched_images.outputs.json }}'
667667 echo "$STITCHED_JSON" | jq .
668668
669- for cuda in 12.6; do
669+ for cuda in 12.6 13.0 ; do
670670 cuda_major="${cuda%%.*}"
671671 artifact_name="image_cu${cuda_major}_publishing"
672672 info_file="$artifact_name.txt"
@@ -704,14 +704,22 @@ jobs:
704704 retention-days : 30
705705 if-no-files-found : error
706706
707+ - name : Upload image_cu13_publishing
708+ uses : actions/upload-artifact@v4
709+ with :
710+ name : image_cu13_publishing
711+ path : image_cu13_publishing.txt
712+ retention-days : 30
713+ if-no-files-found : error
714+
707715 python_wheels :
708716 name : Create Python wheels
709717 needs : [metadata, config]
710718 strategy :
711719 matrix :
712720 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
713721 python_version : ['3.11', '3.12', '3.13']
714- cuda_version : ["12.6"]
722+ cuda_version : ["12.6", "13.0" ]
715723 fail-fast : false
716724 uses : ./.github/workflows/python_wheels.yml
717725 secrets :
@@ -730,7 +738,7 @@ jobs:
730738 strategy :
731739 matrix :
732740 platform : ${{ fromJson(needs.metadata.outputs.platforms).ids }}
733- cuda_version : ["12.6"]
741+ cuda_version : ["12.6", "13.0" ]
734742 fail-fast : false
735743 uses : ./.github/workflows/prebuilt_binaries.yml
736744 secrets :
0 commit comments