X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/555ebd52dcc6199fdca1cb9d9876d8da2357a80f..e84659ef22bae50c28bce4163d837e819a6a7fc5:/tools/jenkins/project_description.sh diff --git a/tools/jenkins/project_description.sh b/tools/jenkins/project_description.sh index 9b44be6078..3570212509 100755 --- a/tools/jenkins/project_description.sh +++ b/tools/jenkins/project_description.sh @@ -1,7 +1,12 @@ -#!/bin/bash +#!/usr/bin/env bash get_boost(){ - grep -m 1 "Boost version:" ./consoleText | sed "s/.*-- Boost version: \([a-zA-Z0-9\.]*\)/\1/g" + BOOST=$(grep -m 1 "Boost version:" ./consoleText | sed "s/.*-- Boost version: \([a-zA-Z0-9\.]*\)/\1/g") + if [ -z "$BOOST" ] + then + BOOST=$(grep -m 1 "Found Boost:" ./consoleText | sed "s/.*-- Found Boost:.*found suitable version \"\([a-zA-Z0-9\.]*\)\",.*/\1/g") + fi + echo $BOOST } get_compiler(){ @@ -17,7 +22,7 @@ get_cmake(){ } get_ns3(){ - found=$(grep -c "NS-3 found" ./consoleText) + found=$(grep -c "ns-3 found" ./consoleText) if [ $found != 0 ]; then echo "✔" else @@ -45,7 +50,7 @@ fi #get the list of nodes on jenkins wget --quiet ${BUILD_URL}/consoleText >/dev/null 2>&1 -nodes=($(grep -rR "Triggering SimGrid ? Debug," ./consoleText | sed "s/Triggering SimGrid ? Debug,\(.*\)/\1/g"| sort)) +nodes=($(sed -n 's/^Triggering SimGrid [^ ]* Debug,//p' ./consoleText| sort)) rm consoleText @@ -123,7 +128,7 @@ function sortTable(n, type) { } } -" +" for node in "${nodes[@]}" do @@ -139,25 +144,50 @@ do ns3=$(get_ns3) py=$(get_python) os=$(grep -m 1 "OS Version" ./consoleText| sed "s/OS Version : \(.*\)/\1/g") - echo "" + + color1="" + color2="" + #in case of success, replace blue by green in status balls + wget --quiet https://ci.inria.fr/simgrid/buildStatus/text?job=SimGrid%2Fbuild_mode%3DDebug%2Cnode%3D${node} -O status >/dev/null 2>&1 + status=$(cat status) + if [ $status == "Success" ]; then + color1="&color=green" + fi + rm status + statusmc="" + wget --quiet https://ci.inria.fr/simgrid/buildStatus/text?job=SimGrid%2Fbuild_mode%3DModelChecker%2Cnode%3D${node} -O status >/dev/null 2>&1 + status=$(cat status) + if [ $status ]; then + if [ $status == "Success" ]; then + color2="&color=green" + fi + statusmc="" + fi + rm status + echo "" rm consoleText 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 2)) +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 - node="travis-linux" - os="Ubuntu 16.04 (xenial) 64 bits" - else - node="travis-mac" - os="Mac OSX High Sierra (kernel: 17.4.0)" + + if [ ${OS[$id]} == "linux" ]; then + node="travis-linux (log)" + os="Ubuntu 18.04 bionic" + elif [ ${OS[$id]} == "osx" ]; then + node="travis-mac (log)" + os="Mac OS X Mojave (10.14) " + elif [ ${OS[$id]} == "windows" ]; then + node="travis-windows (log)" + os="Windows 10 v17134" fi boost=$(get_boost) compiler=$(get_compiler) @@ -165,7 +195,12 @@ do cmake=$(get_cmake) ns3=$(get_ns3) py=$(get_python) - echo "" + success=$(grep -m 1 "Your build exited with 0" ./consoleText) + ball="red.png" + if [ -n "$success" ]; then + ball="blue.png" + fi + echo "" rm consoleText done @@ -181,7 +216,12 @@ java=$(get_java) cmake=$(get_cmake) ns3=$(get_ns3) py=$(get_python) -echo "" +success=$(grep -m 1 "Build success" ./consoleText) +ball="red.png" +if [ -n "$success" ]; then + ball="blue.png" +fi +echo "" rm consoleText echo "
Name of the BuilderOSCompilerBoostJavaCmakeNS3Python
Name of the BuilderOSCompilerBoostJavaCmakens-3PythonDebugMC
$node$os$compiler$boost$java$cmake$ns3$py
$node$os$compiler$boost$java$cmake$ns3$py${statusmc}
$node$os$compiler$boost$java$cmake$ns3$py
$node$os$compiler$boost$java$cmake$ns3$py
$node$os$compiler$boost$java$cmake$ns3$py
$node$os$compiler$boost$java$cmake$ns3$py
"