mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-03 03:31:05 +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
788 B
YAML
26 lines
788 B
YAML
name: Self-hosted runner (AMD scheduled CI caller)
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "17 2 * * *"
|
|
push:
|
|
branches:
|
|
- run_amd_scheduled_ci_caller*
|
|
|
|
jobs:
|
|
run_amd_ci_mi210:
|
|
name: AMD mi210
|
|
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_scheduled_ci_caller')))
|
|
uses: ./.github/workflows/self-scheduled-amd.yml
|
|
with:
|
|
gpu_flavor: mi210
|
|
secrets: inherit
|
|
|
|
run_amd_ci_mi250:
|
|
name: AMD mi250
|
|
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_scheduled_ci_caller')))
|
|
uses: ./.github/workflows/self-scheduled-amd.yml
|
|
with:
|
|
gpu_flavor: mi250
|
|
secrets: inherit
|