mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Move the GitHub Action that builds the Windows artefacts to use the new subsurface/mxe-build:3.1.0 container. Also rename references to the old container in scripts and documantation. Signed-off-by: Michael Keller <github@ike.ch>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| set -x
 | |
| set -e
 | |
| 
 | |
| # known good MXE sha
 | |
| MXE_SHA="c0bfefc57a00fdf6cb5278263e21a478e47b0bf5"
 | |
| SCRIPTPATH=$(dirname $0)
 | |
| 
 | |
| # version of the docker image
 | |
| VERSION=3.1.0
 | |
| 
 | |
| pushd $SCRIPTPATH
 | |
| 
 | |
| # we use the 'experimental' --squash argument to significantly reduce the size of the massively huge
 | |
| # Docker container this produces
 | |
| docker build -t subsurface/mxe-build:$VERSION --build-arg=mxe_sha=$MXE_SHA -f Dockerfile .
 | |
| docker images
 | |
| popd
 |