mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-10 20:50:12 +00:00
b303991cf6
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.
12 lines
134 B
Bash
Executable File
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
|