1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-06 12:36:52 +00:00
hyperrogue/.github/workflows/test_simple.sh

18 lines
344 B
Bash
Raw Normal View History

set -x -e o pipefail
2020-05-30 20:14:33 +00:00
if [[ "$GH_OS" == "windows-latest" && "$GH_BUILDSYS" == "mymake" ]]; then
cat << ENDOFCMDS > .github/workflows/gdb_cmds.txt
run --version
backtrace
exit 1
ENDOFCMDS
2024-04-28 00:40:43 +00:00
echo not running gdb -- not working currently
echo gdb --batch -x .github/workflows/gdb_cmds.txt ./hyperrogue
else
./hyperrogue --version
fi