mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh -eux
 | 
						|
 | 
						|
pip install --user platformio
 | 
						|
 | 
						|
rm -r test
 | 
						|
 | 
						|
for EXAMPLE in $PWD/examples/*/*.ino; 
 | 
						|
do
 | 
						|
	platformio ci $EXAMPLE -l '.' -b $BOARD
 | 
						|
done
 |