File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -352,12 +352,9 @@ export PATH="/home/runner/bin:$PATH"
352
352
source ./.github/scripts/install-arduino-cli.sh
353
353
354
354
echo " Testing $PACKAGE_JSON_DEV install ..."
355
- echo " Updating index ..."
356
- arduino-cli core update-index --additional-urls " file://$OUTPUT_DIR /$PACKAGE_JSON_DEV "
357
- if [ $? -ne 0 ]; then echo " ERROR: Failed to update index ($? )" ; exit 1; fi
358
355
359
356
echo " Installing esp32 ..."
360
- arduino-cli core install esp32:esp32
357
+ arduino-cli core install esp32:esp32 --additional-urls " file:// $OUTPUT_DIR / $PACKAGE_JSON_DEV "
361
358
if [ $? -ne 0 ]; then echo " ERROR: Failed to install esp32 ($? )" ; exit 1; fi
362
359
363
360
echo " Compiling example ..."
@@ -372,12 +369,9 @@ echo "Test successful!"
372
369
373
370
if [ " $RELEASE_PRE " == " false" ]; then
374
371
echo " Testing $PACKAGE_JSON_REL install ..."
375
- echo " Updating index ..."
376
- arduino-cli core update-index --additional-urls " file://$OUTPUT_DIR /$PACKAGE_JSON_REL "
377
- if [ $? -ne 0 ]; then echo " ERROR: Failed to update index ($? )" ; exit 1; fi
378
372
379
373
echo " Installing esp32 ..."
380
- arduino-cli core install esp32:esp32
374
+ arduino-cli core install esp32:esp32 --additional-urls " file:// $OUTPUT_DIR / $PACKAGE_JSON_REL "
381
375
if [ $? -ne 0 ]; then echo " ERROR: Failed to install esp32 ($? )" ; exit 1; fi
382
376
383
377
echo " Compiling example ..."
You can’t perform that action at this time.
0 commit comments