1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-18 13:55:34 +01:00
glib/.gitlab-ci/show-execution-environment.sh
Simon McVittie dff2e3b4c7 CI: Show execution environment before we start
This will help to debug CI issues that are related to us running in
a container that might have unusual capabilities, mount points,
filesystems etc., such as (probably) , , .

Signed-off-by: Simon McVittie <smcv@collabora.com>
2020-03-04 15:25:47 +00:00

12 lines
199 B
Bash
Executable File

#!/bin/bash
set -eux -o pipefail
id || :
capsh --print || :
env -0 | sort -z | perl -pe 's/\0/\n/g' || :
setpriv --dump || :
ulimit -a || :
cat /proc/self/status || :
cat /proc/self/mountinfo || :