Skip to content

Commit

Permalink
check disk space
Browse files Browse the repository at this point in the history
Signed-off-by: helenxie-bit <[email protected]>
  • Loading branch information
helenxie-bit committed Sep 14, 2024
1 parent 0385eea commit e0c5170
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/e2e-test-tune-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,24 @@ jobs:
run: |
pip install "kubeflow-training[huggingface]==1.8.1"
# Step to check disk space
- name: Check Disk Space
run: |
echo "Checking disk space usage before e2e test..."
df -h # Run 'df' to check free disk space
- name: Run e2e test with tune API
uses: ./.github/workflows/template-e2e-test
with:
tune-api: true
training-operator: true

# Step to check disk space
- name: Check Disk Space
if: always() # Run this step even if previous steps fail
run: |
echo "Checking disk space usage after e2e test..."
df -h # Run 'df' to check free disk space
# Step to get logs of the relevant Experiment pod
- name: Fetch Experiment Pod Logs
Expand Down

0 comments on commit e0c5170

Please sign in to comment.