gtk/.gitlab-ci/show-info-linux.sh
Matthias Clasen b303991cf6 ci: Dump a bit more information
Bugs and fixes in mesa have been affecting GTK quite a bit, with
the new renderers. So make the ci info script dump out the version
of mesa (and vulkan, for good measure).

Having to download and run the image to find this information again
is a bit cumbersome, so lets just dump it in the ci logs.

Other packages can be added if they are of interest.
2024-12-05 11:37:56 -05:00

12 lines
134 B
Bash
Executable File

#! /bin/sh
uname -a
. /etc/os-release
echo $PRETTY_NAME
if [ "$ID" == "fedora" ]; then
rpm -q mesa-dri-drivers vulkan-loader
fi