Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/gpu_ci_h100.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ permissions:
jobs:

skyrl_train_tests_h100:
# A `labeled` event starts a run of every label-gated workflow, so runs fired by
# another label skip this job. GitHub keeps only the newest check of a given name,
# so a skip published under the real name masks a run that is still going. The
# running branch has to stay equal to the job id -- that is the existing check
# context, and renaming it would break branch protection pointing at it.
name: >-
${{ (github.event_name != 'pull_request_target'
|| github.event.label.name == 'run_h100_gpu_ci')
&& 'skyrl_train_tests_h100' || 'skipped (unrelated label)' }}
# Gate on the label that fired this event. `types: [labeled]` delivers one event
# per label added, and `contains(...labels.*.name, ...)` tests the whole label
# set, so labelling in bulk launched one identical GPU run per label.
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/gpu_skyrl_train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ permissions:
jobs:

skyrl_train_tests:
# A `labeled` event starts a run of every label-gated workflow, so runs fired by
# another label skip this job. GitHub keeps only the newest check of a given name,
# so a skip published under the real name masks a run that is still going. The
# running branch has to stay equal to the job id -- that is the existing check
# context, and renaming it would break branch protection pointing at it.
name: >-
${{ (github.event_name != 'pull_request_target'
|| github.event.label.name == 'run_train_gpu_ci')
&& 'skyrl_train_tests' || 'skipped (unrelated label)' }}
# Gate on the label that fired this event. `types: [labeled]` delivers one event
# per label added, and `contains(...labels.*.name, ...)` tests the whole label
# set, so labelling in bulk launched one identical GPU run per label.
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/gpu_skyrl_train_megatron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ permissions:
jobs:

skyrl_train_tests_megatron:
# A `labeled` event starts a run of every label-gated workflow, so runs fired by
# another label skip this job. GitHub keeps only the newest check of a given name,
# so a skip published under the real name masks a run that is still going. The
# running branch has to stay equal to the job id -- that is the existing check
# context, and renaming it would break branch protection pointing at it.
name: >-
${{ (github.event_name != 'pull_request_target'
|| github.event.label.name == 'run_train_megatron_gpu_ci')
&& 'skyrl_train_tests_megatron' || 'skipped (unrelated label)' }}
# Gate on the label that fired this event. `types: [labeled]` delivers one event
# per label added, and `contains(...labels.*.name, ...)` tests the whole label
# set, so labelling in bulk launched one identical GPU run per label.
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/gpu_skyrl_train_megatron_models.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ permissions:
jobs:

skyrl_train_tests_megatron_models:
# A `labeled` event starts a run of every label-gated workflow, so runs fired by
# another label skip this job. GitHub keeps only the newest check of a given name,
# so a skip published under the real name masks a run that is still going. The
# running branch has to stay equal to the job id -- that is the existing check
# context, and renaming it would break branch protection pointing at it.
name: >-
${{ (github.event_name != 'pull_request_target'
|| github.event.label.name == 'run_train_megatron_gpu_ci_models')
&& 'skyrl_train_tests_megatron_models' || 'skipped (unrelated label)' }}
# Gate on the label that fired this event. `types: [labeled]` delivers one event
# per label added, and `contains(...labels.*.name, ...)` tests the whole label
# set, so labelling in bulk launched one identical GPU run per label.
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/tinker_skyrl_train_backend_gpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ permissions:
jobs:

tinker_skyrl_train_backend_gpu_tests:
# A `labeled` event starts a run of every label-gated workflow, so runs fired by
# another label skip this job. GitHub keeps only the newest check of a given name,
# so a skip published under the real name masks a run that is still going. The
# running branch has to stay equal to the job id -- that is the existing check
# context, and renaming it would break branch protection pointing at it.
name: >-
${{ (github.event_name != 'pull_request_target'
|| github.event.label.name == 'run_tinker_skyrl_train_backend_gpu_ci')
&& 'tinker_skyrl_train_backend_gpu_tests' || 'skipped (unrelated label)' }}
# Gate on the label that fired this event. `types: [labeled]` delivers one event
# per label added, and `contains(...labels.*.name, ...)` tests the whole label
# set, so labelling in bulk launched one identical GPU run per label.
Expand Down