From: Augustin Degomme Date: Sat, 27 Jul 2019 09:04:36 +0000 (+0200) Subject: avoid mixing travis builders X-Git-Tag: v3.24~238 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e84659ef22bae50c28bce4163d837e819a6a7fc5 avoid mixing travis builders --- diff --git a/tools/jenkins/project_description.sh b/tools/jenkins/project_description.sh index 08cb9dd62c..3570212509 100755 --- a/tools/jenkins/project_description.sh +++ b/tools/jenkins/project_description.sh @@ -172,18 +172,20 @@ done #Travis - get ID of the last jobs with the API BUILD_NUM=$(curl -s 'https://api.travis-ci.org/repos/simgrid/simgrid/builds?limit=1' | grep -o '^\[{"id":[0-9]*,' | grep -o '[0-9]' | tr -d '\n') BUILDS=($(curl -s https://api.travis-ci.org/repos/simgrid/simgrid/builds/${BUILD_NUM} | grep -o '{"id":[0-9]*,' | grep -o '[0-9]*'| tail -n 3)) +OS=($(curl -s https://api.travis-ci.org/repos/simgrid/simgrid/builds/${BUILD_NUM} | grep -o '"os":"[a-z]*",' | sed 's/"os":"\([a-z]*\)",/\1/g'| tail -n 3)) for id in "${!BUILDS[@]}" do wget --quiet https://api.travis-ci.org/v3/job/${BUILDS[$id]}/log.txt -O ./consoleText >/dev/null 2>&1 sed -i -e "s/\r//g" ./consoleText - if [ $id == 0 ]; then + + if [ ${OS[$id]} == "linux" ]; then node="travis-linux (log)" os="Ubuntu 18.04 bionic" - elif [ $id == 1 ]; then + elif [ ${OS[$id]} == "osx" ]; then node="travis-mac (log)" os="Mac OS X Mojave (10.14) " - elif [ $id == 2 ]; then + elif [ ${OS[$id]} == "windows" ]; then node="travis-windows (log)" os="Windows 10 v17134" fi