mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			986 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			986 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # This script is expected to produce working builds for all compiler versions >= 0.3.6 and
 | |
| # succeeding solc-js test runs for all compiler versions >= 0.5.0.
 | |
| 
 | |
| if [ $# -lt 2 ]; then
 | |
|   echo "Usage: $0 [tagFilter] [outputDirectory] [options...]"
 | |
|   echo
 | |
|   echo "  [tagFilter] will be passed to "git tag --list" to filter the tags to be built."
 | |
|   echo "  [outputDirectory] will contain log files and the resulting soljson.js builds."
 | |
|   echo "  --retest will re-run tests and bytecode comparisons, even if soljson.js is already built."
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| TAGS="$1"
 | |
| OUTPUTDIR="$2"
 | |
| shift
 | |
| shift
 | |
| SCRIPTDIR=$(dirname "$0")
 | |
| SCRIPTDIR=$(realpath "${SCRIPTDIR}")
 | |
| 
 | |
| if [ ! -d "${OUTPUTDIR}" ]; then
 | |
|   echo "Output directory ${OUTPUTDIR} does not exist!."
 | |
|   exit 1
 | |
| fi
 | |
| OUTPUTDIR=$(realpath "${OUTPUTDIR}")
 | |
| 
 | |
| docker run --rm -v "${OUTPUTDIR}":/tmp/output -v "${SCRIPTDIR}":/tmp/scripts:ro -it trzeci/emscripten:sdk-tag-1.39.3-64bit /tmp/scripts/docker-scripts/rebuild_tags.sh "${TAGS}" /tmp/output $@
 |