mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
dff2e3b4c7
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) #2027, #2028, #2029. Signed-off-by: Simon McVittie <smcv@collabora.com>
12 lines
199 B
Bash
Executable File
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 || :
|