.gitlab-ci.yml: print out more information in the before_script section
authorStefan Metzmacher <metze@samba.org>
Mon, 11 Feb 2019 12:23:58 +0000 (13:23 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 14 Feb 2019 01:18:29 +0000 (02:18 +0100)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Tim Beale <timbeale@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
.gitlab-ci.yml

index 0729599e1b87488d6c5fce85292ac3ff7a6710ae..cc7a623ac82bc401096cb2a282460f7e846044c1 100644 (file)
@@ -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