mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
### Description Move Linux Github actions to a dedicated pool. Currently the "orttraining-linux-ci-pipeline " is too slow. ### Motivation and Context To speed up the running.
20 lines
464 B
Django/Jinja
20 lines
464 B
Django/Jinja
# Don't edit this file manully.
|
|
# Run {{ python_file_name }} to generate it.
|
|
|
|
name: {{ ci_workflow_name }}
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- docs/**
|
|
- README.md
|
|
- CONTRIBUTING.md
|
|
- BUILD.md
|
|
|
|
jobs:
|
|
{%- for name in job_names %}
|
|
job{{ loop.index }}:
|
|
name: {{ name }}
|
|
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
|
|
steps:
|
|
- run: 'echo "No build required, only documentation changed"'
|
|
{% endfor %}
|