Skip to content

Commit 3efe435

Browse files
committed
Echo to log on each IDE version installed
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.
1 parent de16460 commit 3efe435

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

arduino-ci-script.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ function install_ide()
236236
eval "$INSTALLED_IDE_VERSION_LIST_ARRAY"
237237
local IDEversion
238238
for IDEversion in "${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"
239241
# Determine download file extension
240242
local tgzExtensionVersionsRegex="1.5.[0-9]"
241243
if [[ "$IDEversion" =~ $tgzExtensionVersionsRegex ]]; then

0 commit comments

Comments
 (0)