mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 17:15:29 +00:00
### Description <!-- Describe your changes. --> ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
24 lines
No EOL
593 B
YAML
24 lines
No EOL
593 B
YAML
parameters:
|
|
- name: nightly
|
|
type: string
|
|
default: '1'
|
|
- name: build_id
|
|
type: string
|
|
default: 'latest'
|
|
- name: project
|
|
type: string
|
|
default: 'Lotus'
|
|
- name: pipeline
|
|
type: string
|
|
default: 'Python-CUDA-Packaging-Pipeline'
|
|
|
|
stages:
|
|
- template: stages/py-cuda-publishing-stage.yml
|
|
parameters:
|
|
build_id: ${{ parameters.build_id }}
|
|
project: ${{ parameters.project }}
|
|
pipeline: ${{ parameters.pipeline }}
|
|
${{ if ne(parameters.nightly, '1') }}:
|
|
artifact_feed: onnxruntime-cuda-12
|
|
${{ else }}:
|
|
artifact_feed: ort-cuda-12-nightly |