[PATCH v1 1/4] .travis.yml: show free disk space at end of run

Alex Bennée posted 4 patches 5 years, 9 months ago
[PATCH v1 1/4] .travis.yml: show free disk space at end of run
Posted by Alex Bennée 5 years, 9 months ago
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.travis.yml b/.travis.yml
index 2fd63eceaa..a4c3c6c805 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -113,6 +113,7 @@ script:
         $(exit $BUILD_RC);
     fi
 after_script:
+  - df -h
   - if command -v ccache ; then ccache --show-stats ; fi
 
 
-- 
2.20.1


Re: [PATCH v1 1/4] .travis.yml: show free disk space at end of run
Posted by Philippe Mathieu-Daudé 5 years, 9 months ago
On 5/1/20 1:15 PM, Alex Bennée wrote:
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>   .travis.yml | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/.travis.yml b/.travis.yml
> index 2fd63eceaa..a4c3c6c805 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -113,6 +113,7 @@ script:
>           $(exit $BUILD_RC);
>       fi
>   after_script:
> +  - df -h
>     - if command -v ccache ; then ccache --show-stats ; fi
>   
>   
> 

Already reviewed:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg697747.html

Again:
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>