mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Use ipv4 for appci because ipv6 is broken
This commit is contained in:
parent
53bfe0a4a2
commit
a8e5383488
2 changed files with 1 additions and 1 deletions
0
appci/analyze.py
Normal file → Executable file
0
appci/analyze.py
Normal file → Executable file
2
appci/fetch.sh
Normal file → Executable file
2
appci/fetch.sh
Normal file → Executable file
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue