mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# this is run to actually trigger the creation of the Windows installer
							 | 
						||
| 
								 | 
							
								# inside the container
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								set -x
							 | 
						||
| 
								 | 
							
								set -e
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								docker exec -t builder bash subsurface/scripts/windows-container/in-container-build.sh 2>&1 | tee build.log
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# fail the build if we didn't create the target binary
							 | 
						||
| 
								 | 
							
								grep "Built target installer" build.log
							 | 
						||
| 
								 | 
							
								
							 |