ci: clear the target dir if it gets too big

This commit is contained in:
Max Brunsfeld 2023-05-11 09:43:13 -07:00
parent 0ab94551f4
commit 3550110e57
2 changed files with 26 additions and 0 deletions

View File

@ -62,6 +62,9 @@ jobs:
clean: false
submodules: 'recursive'
- name: Limit target directory size
run: script/clear-target-dir-if-larger-than 70
- name: Run check
run: cargo check --workspace
@ -110,6 +113,9 @@ jobs:
clean: false
submodules: 'recursive'
- name: Limit target directory size
run: script/clear-target-dir-if-larger-than 70
- name: Determine version and release channel
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: |

View File

@ -0,0 +1,20 @@
#!/bin/bash
set -eu
if [[ $# < 1 ]]; then
echo "usage: $0 <MAX_SIZE_IN_GB>"
exit 1
fi
max_size_gb=$1
current_size=$(du -s target | cut -f1)
current_size_gb=$(expr ${current_size} / 1024 / 1024)
echo "target directory size: ${current_size_gb}gb. max size: ${max_size_gb}gb"
if [[ ${current_size_gb} -gt ${max_size_gb} ]]; then
echo "clearing target directory"
rm -rf target
fi