Skip to content

Commit

Permalink
[ci] fix linux runners running out of disk space (fixed #6635) (#6636)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored Sep 2, 2024
1 parent 16c12ef commit b9a2262
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,35 @@ resources:
tasks: true
jobs:
###########################################
- job: Maintenance
###########################################
pool: mariner-20240410-0
container: ubuntu-latest
# routine maintenance (like periodically deleting old files),
# to be run on 1 random CI runner in the self-hosted pool each runner
steps:
- script: |
print-diagnostics(){
echo "---- df -h -m ----"
df -h -m
echo "---- docker system df ----"
/tmp/docker system df
echo "---- docker images ----"
/tmp/docker images
}
# check disk usage
print-diagnostics
# remove old containers, container images, volumes
# ref: https://stackoverflow.com/a/32723127/3986677)
echo "---- running 'docker system prune' ----"
/tmp/docker system prune \
--all \
--force \
--filter until=720h
# check disk usage again
print-diagnostics
displayName: clean
###########################################
- job: Linux
###########################################
variables:
Expand Down

0 comments on commit b9a2262

Please sign in to comment.