mirror of
				https://github.com/meshtastic/firmware.git
				synced 2025-10-28 23:34:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			980 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			980 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| platformioFailed() {
 | |
| 	[[ $VIRTUAL_ENV != "" ]] && exit 1 # don't hint at virtualenv if it's already in use
 | |
| 	echo -e "\nThere were issues running platformio and you are not using a virtual environment." \
 | |
| 		"\nYou may try setting up virtualenv and downloading the latest platformio from pip:" \
 | |
| 		"\n\tvirtualenv venv" \
 | |
| 		"\n\tsource venv/bin/activate" \
 | |
| 		"\n\tpip install platformio" \
 | |
| 		"\n\t./bin/build-native.sh # retry building"
 | |
| 	exit 1
 | |
| }
 | |
| 
 | |
| VERSION=$(bin/buildinfo.py long)
 | |
| SHORT_VERSION=$(bin/buildinfo.py short)
 | |
| PIO_ENV=${1:-native}
 | |
| 
 | |
| OUTDIR=release/
 | |
| 
 | |
| rm -f $OUTDIR/firmware*
 | |
| 
 | |
| mkdir -p $OUTDIR/
 | |
| rm -r $OUTDIR/* || true
 | |
| 
 | |
| # Important to pull latest version of libs into all device flavors, otherwise some devices might be stale
 | |
| pio pkg install --environment "$PIO_ENV" || platformioFailed
 | |
| pio run --environment "$PIO_ENV" || platformioFailed
 | |
| cp ".pio/build/$PIO_ENV/program" "$OUTDIR/meshtasticd_linux_$(uname -m)"
 | |
| cp bin/native-install.* $OUTDIR
 | 
