Skip to content

Commit

Permalink
add some df commands to help debug actions failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ahornby committed Jul 29, 2023
1 parent 2593e29 commit 9ad0003
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/edenfs_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Show disk space at start
run: df -h
- name: Freeup space
run: sudo rm -rf "$AGENT_TOOLSDIRECTORY" /usr/local/lib/android
- name: Show disk space after removing pre-installed tools
run: df -h
- name: Update system package info
run: sudo apt-get update
- name: Install system deps
Expand Down Expand Up @@ -201,3 +207,5 @@ jobs:
with:
name: eden
path: _artifacts
- name: Show disk space at end
run: df -h

0 comments on commit 9ad0003

Please sign in to comment.