mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
more space checks (#2234)
This commit is contained in:
parent
eead47aec8
commit
fced4c485c
8
.github/workflows/rust_build.yml
vendored
8
.github/workflows/rust_build.yml
vendored
|
@ -46,11 +46,17 @@ jobs:
|
||||||
- name: "Check disk space and size of target, then clean it"
|
- name: "Check disk space and size of target, then clean it"
|
||||||
run: |
|
run: |
|
||||||
df -h
|
df -h
|
||||||
du -sh target/
|
echo "Checking base dir"
|
||||||
|
du -shc *
|
||||||
|
echo "Checking target dir"
|
||||||
|
du -shc target/*
|
||||||
rm -rf target/*
|
rm -rf target/*
|
||||||
|
|
||||||
- name: "Run cargo test"
|
- name: "Run cargo test"
|
||||||
run: cargo test
|
run: cargo test
|
||||||
|
- name: "Check disk space at the end"
|
||||||
|
run:
|
||||||
|
du -shc *
|
||||||
run_release:
|
run_release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue