diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e43ed9c5a8..19818cafff 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false steps: - name: Install rustup - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -- -y + run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - uses: actions/checkout@v3 - uses: moonrepo/setup-rust@v0 with: @@ -79,23 +79,3 @@ jobs: with: name: speedscope-profile path: tpch-*.txt - - - name: Send Slack notification on failure - uses: slackapi/slack-github-action@v1.24.0 - if: failure() - with: - payload: | - { - "blocks": [ - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": ":rotating_light: Run Profiling on the TPCH Benchmark <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED* :rotating_light:" - } - } - ] - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK