mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-11-04 08:01:38 +01:00 
			
		
		
		
	* Rework the sketch builder to match the IDE * Link the board to the home folder * Rename files for clarity * move ci files to own subfolder * Update Github CI to use the new script locations
		
			
				
	
	
		
			7 lines
		
	
	
		
			404 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			404 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
pip install -U https://github.com/platformio/platformio/archive/develop.zip && \
 | 
						|
python -m platformio platform install https://github.com/platformio/platform-espressif32.git#feature/stage && \
 | 
						|
sed -i 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' ~/.platformio/platforms/espressif32/platform.json && \
 | 
						|
ln -s $TRAVIS_BUILD_DIR ~/.platformio/packages/framework-arduinoespressif32
 |