forked from mirrors/gecko-dev
		
	 1a56460275
			
		
	
	
		1a56460275
		
	
	
	
	
		
			
			MozReview-Commit-ID: BHi3E6J3nuH --HG-- extra : rebase_source : a59180efe4fed56222d2847d60133739f38c8ca8
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| set -x -e -v
 | |
| 
 | |
| # This script is for building infer for Linux.
 | |
| 
 | |
| WORKSPACE=$HOME/workspace
 | |
| HOME_DIR=$WORKSPACE/build
 | |
| UPLOAD_DIR=$HOME/artifacts
 | |
| 
 | |
| cd $HOME_DIR/src
 | |
| 
 | |
| # gets a bit too verbose here
 | |
| set +x
 | |
| 
 | |
| cd build/build-infer
 | |
| ./build-infer.py -c infer-linux64.json
 | |
| 
 | |
| set -x
 | |
| 
 | |
| # Put a tarball in the artifacts dir
 | |
| mkdir -p $UPLOAD_DIR
 | |
| cp infer.tar.* $UPLOAD_DIR
 |