Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Mar 23, 2024
1 parent afb2c1b commit d1da21a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/self-scheduled-caller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: ./.github/workflows/self-scheduled.yml
with:
job: run_tests_gpu
env_name_for_slack_report_channel: CI_SLACK_CHANNEL_ID_DAILY
env_name_for_slack_report_channel: CI_SLACK_CHANNEL_DUMMY_TESTS
secrets: inherit


Expand Down
1 change: 1 addition & 0 deletions .github/workflows/slack-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
CI_EVENT: scheduled
CI_SHA: ${{ github.sha }}
CI_WORKFLOW_REF: ${{ github.workflow_ref }}
CI_TEST_JOB: ${{ inputs.job }}
SETUP_STATUS: ${{ inputs.setup_status }}
# We pass `needs.setup.outputs.matrix` as the argument. A processing in `notification_service.py` to change
# `models/bert` to `models_bert` is required, as the artifact names use `_` instead of `/`.
Expand Down
5 changes: 5 additions & 0 deletions utils/notification_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,11 @@ def prepare_reports(title, header, reports, to_truncate=True):
elif ci_event.startswith("Push CI (AMD)"):
additional_files = {}

job_name = os.getenv("CI_TEST_JOB")

if job_name != "run_tests_quantization_torch_gpu" and "Quantization tests" in additional_files:
del additional_files["Quantization tests"]

additional_results = {
key: {
"failed": {"unclassified": 0, "single": 0, "multi": 0},
Expand Down

0 comments on commit d1da21a

Please sign in to comment.