You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Generate an array declaration string containing a list all Arduino IDE versions which support CLI (1.5.2+ according to https://github.com/arduino/Arduino/blob/master/build/shared/manpage.adoc#history)
198
+
# Generate an array declaration string containing a list all available Arduino IDE versions which support CLI
if [[ "$startIDEversion"!="1.6.2" ]] && [[ "$startIDEversion"!="1.6.2" ]];then
207
-
#Arduino IDE 1.6.2 has the nasty behavior of moving the included hardware cores to the .arduino15 folder, causing those versions to be used for all builds after Arduino IDE 1.6.2 is used. For that reason, 1.6.2 will only be installed if explicitly specified in the install_ide version arguments
207
+
#See "Arduino IDE version blacklist" documentation below
208
208
local -r IDEversion162regex=--regex='refs/tags/1\.6\.2'
209
209
if [[ "$ARDUINO_CI_SCRIPT_VERBOSITY_LEVEL"-gt 0 ]];then
210
210
echo"NOTE: Due to not playing nicely with other versions, Arduino IDE 1.6.2 will not be installed unless explicitly specified in the version arguments."
# <1.5.2: no CLI (https://github.com/arduino/Arduino/blob/master/build/shared/manpage.adoc#history)
216
+
# 1.5.4-r2: Not available for download
217
+
# 1.5.5-r2: Not available for download
218
+
# 1.5.7-macosx-java7: Not available for download
219
+
# 1.5.8-macosx-java7: Not available for download
220
+
# 1.6.2: has the nasty behavior of moving the included hardware cores to the .arduino15 folder, causing those versions to be used for all builds after Arduino IDE 1.6.2 is used. For that reason, 1.6.2 will only be installed if explicitly specified in the install_ide version arguments
0 commit comments