mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-03 23:49:44 +00:00
### Description * Swap cuda version 11.8/12.2 in GPU CIs * Set CUDA12 as default version in yamls of publishing nuget/python/java GPU packages * Suppress warnings as errors of flash_api.cc during ort win-build
26 lines
No EOL
509 B
YAML
26 lines
No EOL
509 B
YAML
resources:
|
|
pipelines:
|
|
- pipeline: build
|
|
source: 'Python-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-Nightly
|
|
${{ else }}:
|
|
value: onnxruntime-cuda-12
|
|
|
|
stages:
|
|
- template: stages/py-cuda-publishing-stage.yml
|
|
parameters:
|
|
artifact_feed: $(ArtifactFeed) |