mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
30 lines
621 B
YAML
30 lines
621 B
YAML
resources:
|
|
pipelines:
|
|
- pipeline: build
|
|
source: 'Nuget-CUDA-Packaging-Pipeline'
|
|
trigger:
|
|
branches:
|
|
include:
|
|
- main
|
|
branch: main
|
|
|
|
parameters:
|
|
- name: isReleaseBuild
|
|
type: boolean
|
|
default: false
|
|
|
|
variables:
|
|
- name: ArtifactFeed
|
|
${{ if eq(parameters.isReleaseBuild, false) }}:
|
|
value: ort-cuda-12-nightly
|
|
${{ else }}:
|
|
value: onnxruntime-cuda-12
|
|
|
|
stages:
|
|
- template: stages/nuget-cuda-publishing-stage.yml
|
|
parameters:
|
|
artifact_feed: $(ArtifactFeed)
|
|
|
|
- template: stages/java-cuda-publishing-stage.yml
|
|
parameters:
|
|
artifact_feed: $(ArtifactFeed)
|