gplugin/builders

Update the fedora images.

20 months ago, Gary Kramlich
dd0e08640e72
file isExecutable
Update the fedora images.

Replace 34 with 36
Make sure everything has gtk4 and adwaita
#!/bin/sh -e
LOCAL_SUPPRESSIONS=
if [ -f ${CONVEY_WORKSPACE}/gplugin/share/valgrind/gplugin.supp ] ; then
LOCAL_SUPPRESSIONS="--suppressions=${CONVEY_WORKSPACE}/gplugin/share/valgrind/gplugin.supp"
fi
LEAK_KINDS="definite"
valgrind \
--suppressions=/usr/share/glib-2.0/valgrind/glib.supp \
--suppressions=/usr/share/doc/python3-devel/valgrind-python.supp \
${LOCAL_SUPPRESSIONS} \
--leak-check=full \
--show-leak-kinds=${LEAK_KINDS} \
--error-exitcode=1 \
--track-origins=yes \
$@