From: Stefan Metzmacher Date: Mon, 11 Feb 2019 12:23:58 +0000 (+0100) Subject: .gitlab-ci.yml: print out more information in the before_script section X-Git-Tag: ldb-1.6.1~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=670413f0f1675b6b6dfbfdcd1c6780824376c8a1;p=thirdparty%2Fsamba.git .gitlab-ci.yml: print out more information in the before_script section Signed-off-by: Stefan Metzmacher Reviewed-by: Tim Beale Reviewed-by: Andrew Bartlett --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0729599e1b8..cc7a623ac82 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,12 +14,17 @@ variables: - docker - shared before_script: + - uname -a + - lsb_release -a - echo "Build starting (preparing swap)..." - if [ $(df -m / --output=avail | tail -n1) -gt 10240 ]; then sudo dd if=/dev/zero of=/samba-swap bs=1M count=6144; sudo mkswap /samba-swap; sudo swapon /samba-swap; fi + - mount + - df -h + - free -h artifacts: expire_in: 1 week when: on_failure