mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-11-04 07:43:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			290 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			290 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
 | 
						|
  exit 1
 | 
						|
ENDOFCMDS
 | 
						|
 | 
						|
  gdb --batch -x .github/workflows/gdb_cmds.txt ./hyperrogue
 | 
						|
else
 | 
						|
  ./hyperrogue --version
 | 
						|
fi
 |