Skip to content

Commit

Permalink
Merge pull request #419 from danmcp/checkdisk
Browse files Browse the repository at this point in the history
Add disk check after tests run
  • Loading branch information
mergify[bot] authored Dec 6, 2024
2 parents 345efc5 + 6754179 commit d31f4e7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/e2e-nvidia-l4-x1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
. ../instructlab/venv/bin/activate
pip install -v .
- name: Check disk
- name: Check disk before tests
run: |
df -h
Expand All @@ -142,6 +142,10 @@ jobs:
. venv/bin/activate
./scripts/e2e-ci.sh -m
- name: Check disk after tests
run: |
df -h
stop-medium-ec2-runner:
needs:
- start-medium-ec2-runner
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e-nvidia-l40s-x4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
pip install .
pip install .[cuda]
- name: Check disk
- name: Check disk before tests
run: |
df -h
Expand All @@ -172,6 +172,10 @@ jobs:
. venv/bin/activate
./scripts/e2e-ci.sh -l
- name: Check disk after tests
run: |
df -h
- name: Add comment to PR if the workflow failed
if: failure() && steps.check_pr.outputs.is_pr == 'true'
working-directory: ./sdg
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e-nvidia-t4-x1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
. ../instructlab/venv/bin/activate
pip install .
- name: Check disk
- name: Check disk before tests
run: |
df -h
Expand All @@ -138,6 +138,10 @@ jobs:
. venv/bin/activate
./scripts/e2e-ci.sh -s
- name: Check disk after tests
run: |
df -h
stop-small-ec2-runner:
needs:
- start-small-ec2-runner
Expand Down

0 comments on commit d31f4e7

Please sign in to comment.