arduino-esp32/.github/scripts/install-arduino-core-esp32.sh

37 lines
994 B
Bash
Raw Normal View History

2019-09-30 01:01:29 +02:00
#!/bin/bash
export ARDUINO_ESP32_PATH="$ARDUINO_USR_PATH/hardware/espressif/esp32"
if [ ! -d "$ARDUINO_ESP32_PATH" ]; then
echo "Installing ESP32 Arduino Core ..."
2019-09-30 01:01:29 +02:00
script_init_path="$PWD"
mkdir -p "$ARDUINO_USR_PATH/hardware/espressif"
2019-09-30 01:01:29 +02:00
cd "$ARDUINO_USR_PATH/hardware/espressif"
echo "Installing Python Serial ..."
pip install pyserial > /dev/null
if [ "$OS_IS_WINDOWS" == "1" ]; then
echo "Installing Python Requests ..."
pip install requests > /dev/null
fi
2019-09-30 01:01:29 +02:00
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
echo "Linking Core..."
2019-09-30 01:01:29 +02:00
ln -s $GITHUB_WORKSPACE esp32
else
echo "Cloning Core Repository..."
2019-09-30 01:01:29 +02:00
git clone https://github.com/espressif/arduino-esp32.git esp32 > /dev/null 2>&1
fi
#echo "Updating Submodules ..."
cd esp32
#git submodule update --init --recursive > /dev/null 2>&1
2019-09-30 01:01:29 +02:00
echo "Installing Platform Tools ..."
2019-10-01 22:13:08 +02:00
cd tools && python get.py
2019-09-30 01:01:29 +02:00
cd $script_init_path
echo "ESP32 Arduino has been installed in '$ARDUINO_ESP32_PATH'"
2019-09-30 01:01:29 +02:00
echo ""
fi