mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
32 lines
No EOL
925 B
YAML
32 lines
No EOL
925 B
YAML
# 'trigger: none' to use UI to schedule the pipeline runs.
|
|
# alternatively to schedule the pipeline run according to:
|
|
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers?view=azure-devops&tabs=yaml
|
|
trigger: none
|
|
|
|
jobs:
|
|
- job: Onnxruntime_Linux_GPU_Training_FrontEnd
|
|
|
|
timeoutInMinutes: 120
|
|
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
submodules: recursive
|
|
|
|
- template: templates/linux-set-variables-and-download.yml
|
|
|
|
# insert a python frontend test data preparation step here
|
|
|
|
- script: >
|
|
tools/ci_build/github/linux/run_dockerbuild.sh
|
|
-o ubuntu16.04 -d gpu -r $(Build.BinariesDirectory)
|
|
-x "
|
|
--enable_training
|
|
--config RelWithDebInfo
|
|
--skip_onnx_tests
|
|
--build_wheel
|
|
--enable_training_python_frontend_e2e_tests
|
|
"
|
|
displayName: 'Build and run frontend tests'
|
|
|
|
- template: templates/clean-agent-build-directory-step.yml |