We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da32f37 commit e4d1e48Copy full SHA for e4d1e48
1 file changed
.github/scripts/install_deps.sh
@@ -32,7 +32,15 @@ case "${1%%-*}" in
32
;;
33
esac
34
35
+# Print some system info, for easier debugging.
36
+
37
+echo ::group::PATH
38
echo "PATH=($PATH)" | sed 's/:/\n /g'
-bison --version
-make --version
-cmake --version
39
+echo ::endgroup::
40
41
+for prog in bison make cmake; do
42
+ printf '::group::' # No line terminator, the next command's first line becomes the group's title.
43
+ $prog --version
44
+ type $prog
45
+ echo ::endgroup::
46
+done
0 commit comments