Skip to content

Commit

Permalink
Attempt to fix the red messages (#1868)
Browse files Browse the repository at this point in the history
  • Loading branch information
younesbelkada committed Jun 17, 2024
1 parent 25c0fe9 commit 5194aef
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/nightly-bnb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
# with:
# slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
# title: 馃 Results of bitsandbytes import
# status: ${{ steps.import.outputs.status }}
# status: ${{ steps.import.outcome }}
# slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run examples on single GPU
Expand All @@ -78,7 +78,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes examples tests - single GPU
status: ${{ steps.examples_tests.outputs.status }}
status: ${{ steps.examples_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run core tests on single GPU
Expand All @@ -94,7 +94,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes core tests - single GPU
status: ${{ steps.core_tests.outputs.status }}
status: ${{ steps.core_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run BNB regression tests on single GPU
Expand All @@ -110,7 +110,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes regression tests - single GPU
status: ${{ steps.regression_tests.outputs.status }}
status: ${{ steps.regression_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run transformers tests on single GPU
Expand All @@ -126,7 +126,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes transformers tests - single GPU
status: ${{ steps.transformers_tests.outputs.status }}
status: ${{ steps.transformers_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Generate Report
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes import
status: ${{ steps.import.outputs.status }}
status: ${{ steps.import.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run core GPU tests on multi-gpu
Expand All @@ -203,7 +203,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes examples tests - multi GPU
status: ${{ steps.examples_tests.outputs.status }}
status: ${{ steps.examples_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run core tests on multi GPU
Expand All @@ -219,7 +219,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes core tests - multi GPU
status: ${{ steps.core_tests.outputs.status }}
status: ${{ steps.core_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Run transformers tests on multi GPU
Expand All @@ -235,7 +235,7 @@ jobs:
with:
slack_channel: ${{ secrets.BNB_SLACK_CHANNEL_ID }}
title: 馃 Results of bitsandbytes transformers tests - multi GPU
status: ${{ steps.transformers_tests.outputs.status }}
status: ${{ steps.transformers_tests.outcome }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}

- name: Generate Report
Expand Down

0 comments on commit 5194aef

Please sign in to comment.