diff --git a/.github/workflows/full_test.yml b/.github/workflows/full_test.yml index d17581e..0739f47 100644 --- a/.github/workflows/full_test.yml +++ b/.github/workflows/full_test.yml @@ -270,6 +270,11 @@ jobs: cache: pip cache-dependency-path: deeplake/requirements/*.txt + - name: Check disk space + run: | + df -h + du -d 1 -h + - name: Install Libraries run: | pip3 install --upgrade pip --user @@ -366,3 +371,21 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.token }} SONAR_TOKEN: ${{ secrets.sonar_token }} + + notify: + needs: [ report ] + name: Send Notifications + runs-on: ubuntu-latest + if: always() && needs.report.result != 'cancelled' + steps: + - name: Build Failure Slack Notification + if: failure() && github.event_name == 'push' && github.head == "refs/heads/main" && github.repository_owner == 'activeloopai' + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_CHANNEL: deeplake + SLACK_MESSAGE: "Deeplake build failed" + SLACK_USERNAME: "Tensie" + SLACK_FOOTER: "" + MSG_MINIMAL: actions url + SLACK_ICON_EMOJI: ':warning:' + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} \ No newline at end of file