mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 12:50:06 +06:00

* add scheduled ci on amdgpu * fix likely typo * more tests, avoid parallelism * precise comment * fix report channel * trigger docker build on this branch * fix * fix * run rocm scheduled ci * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
26 lines
660 B
YAML
26 lines
660 B
YAML
name: Self-hosted runner (AMD mi250 CI caller)
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Self-hosted runner (push-caller)"]
|
|
branches: ["main"]
|
|
types: [completed]
|
|
push:
|
|
branches:
|
|
- run_amd_push_ci_caller*
|
|
paths:
|
|
- "src/**"
|
|
- "tests/**"
|
|
- ".github/**"
|
|
- "templates/**"
|
|
- "utils/**"
|
|
|
|
jobs:
|
|
run_amd_ci:
|
|
name: AMD mi250
|
|
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller')))
|
|
uses: ./.github/workflows/self-push-amd.yml
|
|
with:
|
|
gpu_flavor: mi250
|
|
secrets: inherit
|