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