From 93e47d8dbda45f83990f293fffc130adc577a2bc Mon Sep 17 00:00:00 2001 From: ydshieh Date: Fri, 5 Apr 2024 14:25:11 +0200 Subject: [PATCH] trigger --- .github/workflows/self-scheduled-caller.yml | 47 +-------------------- utils/split_model_tests.py | 1 + 2 files changed, 2 insertions(+), 46 deletions(-) diff --git a/.github/workflows/self-scheduled-caller.yml b/.github/workflows/self-scheduled-caller.yml index b42e591b4a53bf..d43fcadf828bfb 100644 --- a/.github/workflows/self-scheduled-caller.yml +++ b/.github/workflows/self-scheduled-caller.yml @@ -7,7 +7,7 @@ on: - cron: "17 2 * * *" push: branches: - - run_scheduled_ci* + - move_jobs_from_daily_ci_channel jobs: model-ci: @@ -18,48 +18,3 @@ jobs: # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" secrets: inherit - - torch-pipeline: - name: Torch pipeline CI - uses: ./.github/workflows/self-scheduled.yml - with: - job: run_pipelines_torch_gpu - # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. - env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" - secrets: inherit - - tf-pipeline: - name: TF pipeline CI - uses: ./.github/workflows/self-scheduled.yml - with: - job: run_pipelines_tf_gpu - # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. - env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" - secrets: inherit - - example-ci: - name: Example CI - uses: ./.github/workflows/self-scheduled.yml - with: - job: run_examples_gpu - # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. - env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" - secrets: inherit - - deepspeed-ci: - name: DeepSpeed CI - uses: ./.github/workflows/self-scheduled.yml - with: - job: run_all_tests_torch_cuda_extensions_gpu - # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. - env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" - secrets: inherit - - quantization-ci: - name: Quantization CI - uses: ./.github/workflows/self-scheduled.yml - with: - job: run_tests_quantization_torch_gpu - # See the comment for `ENV_NAME_FOR_CI_SLACK_REPORT_CHANNEL_ID` in `.github/workflows/slack-report.yml`. - env_name_for_slack_report_channel: "#transformers-ci-feedback-tests" - secrets: inherit diff --git a/utils/split_model_tests.py b/utils/split_model_tests.py index fc8800ffcf1c48..7b97e2cbc01d3a 100644 --- a/utils/split_model_tests.py +++ b/utils/split_model_tests.py @@ -62,4 +62,5 @@ start = end end = start + num_jobs_per_splits + (1 if idx < num_jobs % args.num_splits else 0) model_splits.append(d[start:end]) + model_splits = [["models/bertweet"], ["models/byt5"]] print(model_splits)