-
Notifications
You must be signed in to change notification settings - Fork 26.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* separate jobs * separate jobs * use channel name directly instead of ID * use channel name directly instead of ID * use channel name directly instead of ID --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
255 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Self-hosted runner (scheduled) | ||
|
||
|
||
on: | ||
repository_dispatch: | ||
schedule: | ||
- cron: "17 2 * * *" | ||
push: | ||
branches: | ||
- run_scheduled_ci* | ||
|
||
jobs: | ||
model-ci: | ||
name: Model CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_tests_gpu | ||
slack_report_channel: "#transformers-ci-daily-models" | ||
secrets: inherit | ||
|
||
torch-pipeline: | ||
name: Torch pipeline CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_pipelines_torch_gpu | ||
slack_report_channel: "#transformers-ci-daily-pipeline-torch" | ||
secrets: inherit | ||
|
||
tf-pipeline: | ||
name: TF pipeline CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_pipelines_tf_gpu | ||
slack_report_channel: "#transformers-ci-daily-pipeline-tf" | ||
secrets: inherit | ||
|
||
example-ci: | ||
name: Example CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_examples_gpu | ||
slack_report_channel: "#transformers-ci-daily-examples" | ||
secrets: inherit | ||
|
||
deepspeed-ci: | ||
name: DeepSpeed CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_all_tests_torch_cuda_extensions_gpu | ||
slack_report_channel: "#transformers-ci-daily-deepspeed" | ||
secrets: inherit | ||
|
||
quantization-ci: | ||
name: Quantization CI | ||
uses: ./.github/workflows/self-scheduled.yml | ||
with: | ||
job: run_tests_quantization_torch_gpu | ||
slack_report_channel: "#transformers-ci-daily-quantization" | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.