mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-15 01:34:49 +00:00
b2c741117d
- prettier-looking step names - add win-mymake build matrix entry - fix exit commands - change the way envvars are set up - other minor changes - use gdb on win-mymake builds to catch backtraces (temporarily)
15 lines
281 B
Bash
Executable File
15 lines
281 B
Bash
Executable File
set -x -e o pipefail
|
|
|
|
|
|
if [[ "$GH_OS" == "windows-latest" && "$GH_BUILDSYS" == "mymake" ]]; then
|
|
|
|
cat << ENDOFCMDS > .github/workflows/gdb_cmds.txt
|
|
run --version
|
|
backtrace
|
|
ENDOFCMDS
|
|
|
|
gdb --batch -x .github/workflows/gdb_cmds.txt ./hyperrogue
|
|
else
|
|
./hyperrogue --version
|
|
fi
|