Unverified Commit ef5c6b94 authored by Lucas Saavedra Vaz's avatar Lucas Saavedra Vaz Committed by GitHub

fix(release): Fix install test on release (#10256)

parent 77d80954
......@@ -366,12 +366,9 @@ export PATH="/home/runner/bin:$PATH"
source ./.github/scripts/install-arduino-cli.sh
echo "Testing $PACKAGE_JSON_DEV install ..."
echo "Updating index ..."
arduino-cli core update-index --additional-urls "file://$OUTPUT_DIR/$PACKAGE_JSON_DEV"
if [ $? -ne 0 ]; then echo "ERROR: Failed to update index ($?)"; exit 1; fi
echo "Installing esp32 ..."
arduino-cli core install esp32:esp32
arduino-cli core install esp32:esp32 --additional-urls "file://$OUTPUT_DIR/$PACKAGE_JSON_DEV"
if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi
echo "Compiling example ..."
......@@ -386,12 +383,9 @@ echo "Test successful!"
if [ "$RELEASE_PRE" == "false" ]; then
echo "Testing $PACKAGE_JSON_REL install ..."
echo "Updating index ..."
arduino-cli core update-index --additional-urls "file://$OUTPUT_DIR/$PACKAGE_JSON_REL"
if [ $? -ne 0 ]; then echo "ERROR: Failed to update index ($?)"; exit 1; fi
echo "Installing esp32 ..."
arduino-cli core install esp32:esp32
arduino-cli core install esp32:esp32 --additional-urls "file://$OUTPUT_DIR/$PACKAGE_JSON_REL"
if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi
echo "Compiling example ..."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment