Tidy up system info

This commit is contained in:
ISSOtm
2026-04-14 16:20:36 +02:00
committed by Eldred Habert
parent 62ddabb570
commit b65649ca73
+12 -3
View File
@@ -32,7 +32,16 @@ case "${1%%-*}" in
;;
esac
# Print some system info, for easier debugging.
# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-commands#grouping-log-lines
echo ::group::PATH
echo "PATH=($PATH)" | sed 's/:/\n /g'
bison --version
make --version
cmake --version
echo ::endgroup::
for prog in bison make cmake; do
printf '::group::' # No line terminator, the next command's first line becomes the group's title.
$prog --version
type $prog
echo ::endgroup::
done