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
If the download/installation process is going slowly when installing a lot of IDE versions this function may cause the build to fail due to exceeding Travis CI's 10 minutes without log output timeout so it's necessary to periodically print something.
Copy file name to clipboardExpand all lines: arduino-ci-script.sh
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -236,6 +236,8 @@ function install_ide()
236
236
eval"$INSTALLED_IDE_VERSION_LIST_ARRAY"
237
237
local IDEversion
238
238
forIDEversionin"${IDEversionListArray[@]}";do
239
+
# If the download/installation process is going slowly when installing a lot of IDE versions this function may cause the build to fail due to exceeding Travis CI's 10 minutes without log output timeout so it's necessary to periodically print something.
240
+
echo"Installing: $IDEversion"
239
241
# Determine download file extension
240
242
local tgzExtensionVersionsRegex="1.5.[0-9]"
241
243
if [[ "$IDEversion"=~$tgzExtensionVersionsRegex ]];then
0 commit comments