mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-26 19:52:38 +00:00
1. Remove openmp related packaging pipelines and build jobs. 2. Set continueOnError to true for the TSAUpload tasks. Their service is unstable recently. 3. Update Ubuntu 16 docker images to Ubuntu 18, in prepare for getting C++17 support 4. Cherry-pick the changes in 1.7.1 to the master: updating CFLAGS/CXXFLAGS to strip out debug symbols
30 lines
775 B
YAML
30 lines
775 B
YAML
trigger: none
|
|
|
|
jobs:
|
|
- template: templates/linux-ci.yml
|
|
parameters:
|
|
AgentPool : 'Linux-Single-GPU-V100'
|
|
JobName: 'Onnxruntime_Linux_GPU_Training'
|
|
SubmoduleCheckoutMode: 'recursive'
|
|
RunDockerBuildArgs: >
|
|
-o ubuntu18.04 -d gpu -r $(Build.BinariesDirectory)
|
|
-x "
|
|
--enable_training
|
|
--config $(buildConfig)
|
|
--build_wheel
|
|
--enable_nvtx_profile
|
|
"
|
|
DoNugetPack: 'false'
|
|
ArtifactName: 'drop-linux'
|
|
TimeoutInMinutes: 120
|
|
# Enable unreleased onnx opsets in CI builds
|
|
# This facilitates testing the implementation for the new opsets
|
|
AllowReleasedOpsetOnly: '0'
|
|
Strategy:
|
|
maxParallel: 2
|
|
matrix:
|
|
Debug:
|
|
buildConfig: Debug
|
|
Release:
|
|
buildConfig: Release
|
|
|