add debug

This commit is contained in:
Guillaume LEGENDRE 2024-03-18 11:54:31 +01:00 committed by GitHub
parent ece6b94118
commit c1095bb61a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -169,6 +169,9 @@ jobs:
uses: huggingface/tailscale-action@main
with:
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
debugEnabled: ${{ secrets.ACTIONS_STEP_DEBUG }}
slackChannel: ${{ secrets.SLACK_CIFEEDBACK_CHANNEL }}
slackToken: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
- name: Prepare disks
run: |
sudo mkfs -t ext4 /dev/nvme1n1
@ -182,7 +185,11 @@ jobs:
export DOCKER_IMAGE=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:sha-${{ env.GITHUB_SHA_SHORT }}
export HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }}
pytest -s -vv integration-tests
- name: Wait for SSH
if: ${{ success() || failure() }}
run : |
sleep 1m
while [ "$(last | grep '^runner.*still logged in$')" ]; do sleep 1m; done
build-and-push-image-rocm:
concurrency:
group: ${{ github.workflow }}-build-and-push-image-rocm-${{ github.head_ref || github.run_id }}