diff --git a/appci/analyze.py b/appci/analyze.py old mode 100644 new mode 100755 diff --git a/appci/fetch.sh b/appci/fetch.sh old mode 100644 new mode 100755 index fc10d2e..deae704 --- a/appci/fetch.sh +++ b/appci/fetch.sh @@ -3,7 +3,7 @@ while read APP; do APPNAME=$(echo $APP | awk '{print $1}') echo $APPNAME - wget -O data/$APPNAME "https://ci-apps.yunohost.org/jenkins/job/$APP/lastBuild/consoleText" + wget -q -O data/$APPNAME "https://ci-apps.yunohost.org/jenkins/job/$APP/lastBuild/consoleText" --prefer-family=IPv4 CHECKS=$(cat data/$APPNAME | grep "Package linter:" -A15 | tail -n 16 | sed -e 's/FAIL/0/g' -e 's/SUCCESS/1/g' -e 's/Not evaluated./X/' | awk '{print $NF}' | tr -d '\n') LEVELS=$(cat data/$APPNAME | grep 'Level of this application' -A10 | tail -n 11 | sed -e 's@N/A@X@g' -e 's/ Level //g' -e 's/Level of this application//g' | awk '{print $2}' | tr -d '\n')