onnxruntime/tools/ci_build/github/azure-pipelines/orttraining-linux-gpu-frontend-test-ci-pipeline.yml
liqunfu e7297e6c9d
create pipeline for ci frontend tests (#3422)
create pipeline for nightly python front-end e2e tests
2020-04-09 15:31:22 -07:00

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