X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/818cc6a72b40750e3fb5e7e867fd08180cb16ad0..196b543c8e909828b40e851eaf4443ee28f76c70:/tools/jenkins/project_description.sh diff --git a/tools/jenkins/project_description.sh b/tools/jenkins/project_description.sh index 529ed1910f..b002915e57 100755 --- a/tools/jenkins/project_description.sh +++ b/tools/jenkins/project_description.sh @@ -21,14 +21,12 @@ get_cmake(){ grep -m 1 "Cmake version" ./consoleText| sed "s/.*-- Cmake version \([a-zA-Z0-9\.]*\)/\1/g" } +get_eigen3(){ + sed -n 's/.* Eigen3 library \.\+: \([^ ]*\) in .*/\1/p;T;q' ./consoleText +} + get_ns3(){ - grep -m 1 "ns-3 found (v3.[0-9]*; incl:" ./consoleText | sed "s/.*-- ns-3 found .v\(3.[0-9]*\); incl:.*/\1/g" -# found=$(grep -c "ns-3 found" ./consoleText) -# if [ "$found" != 0 ]; then -# echo "✔" -# else -# echo "" -# fi + sed -n 's/.*-- ns-3 found (v\(3[-.0-9a-z]\+\); minor:.*/\1/p;T;q' ./consoleText } get_python(){ @@ -54,8 +52,8 @@ wget --quiet ${BUILD_URL}/consoleText >/dev/null 2>&1 nodes=($(sed -n 's/^Triggering SimGrid [^ ]* Debug,//p' ./consoleText| sort)) rm consoleText - -echo "
Description of the nodes - Automatically updated by project_description.sh script - Don't edit here

+cat <Description of the nodes - Automatically updated by project_description.sh script - Don't edit here

- -" +} + +
Name of the BuilderOSCompilerBoostJavaCmakens-3PythonDebugMC
+ + + + + + + + + + + + + +EOF + +declare -A icons +icons=( + [success]="img src=https://ci.inria.fr/simgrid/images/24x24/blue.png" + [failure]="img src=https://ci.inria.fr/simgrid/images/24x24/red.png" + [disabled]="img src=https://ci.inria.fr/simgrid/images/24x24/disabled.png" +) for node in "${nodes[@]}" do @@ -145,20 +164,24 @@ do compiler=$(get_compiler) java=$(get_java) cmake=$(get_cmake) + eigen3=$(get_eigen3) ns3=$(get_ns3) py=$(get_python) os=$(grep -m 1 "OS Version" ./consoleText| sed "s/OS Version : \(.*\)/\1/g") - + 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="" + statusdebug="" + + statusmc="<${icons[disabled]}>" 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 @@ -168,46 +191,26 @@ do 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 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 [ "${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 Catalina (10.15) " - elif [ "${OS[$id]}" == "windows" ]; then - node="travis-windows (log)" - os="Windows Server 1809" - fi - boost=$(get_boost) - compiler=$(get_compiler) - java=$(get_java) - cmake=$(get_cmake) - ns3=$(get_ns3) - py=$(get_python) - success=$(grep -m 1 "Your build exited with 0" ./consoleText) - ball="red.png" - if [ -n "$success" ]; then - ball="blue.png" - fi - echo "" + cat < + + + + + + + + + + + + +EOF rm consoleText done + #Appveyor - get ID of the last job with the API BUILD_ID=$(curl -s "https://ci.appveyor.com/api/projects/mquinson/simgrid" | grep -o '\[{"jobId":"[a-zA-Z0-9]*",' | sed "s/\[{\"jobId\":\"//" | sed "s/\",//") wget --quiet https://ci.appveyor.com/api/buildjobs/"$BUILD_ID"/log -O ./consoleText >/dev/null 2>&1 @@ -218,14 +221,29 @@ boost=$(get_boost) compiler=$(get_compiler) java=$(get_java) cmake=$(get_cmake) +eigen3=$(get_eigen3) ns3=$(get_ns3) py=$(get_python) success=$(grep -m 1 "Build success" ./consoleText) -ball="red.png" +ball="${icons[failure]}" if [ -n "$success" ]; then - ball="blue.png" + ball="${icons[success]}" fi -echo "" +cat < + + + + + + + + + + + + +EOF rm consoleText echo "
Name of the BuilderOSDebugMCCompilerBoostJavaCmakeEigen3ns-3Python
$node$os$compiler$boost$java$cmake$ns3$py${statusmc}
$node$os$compiler$boost$java$cmake$ns3$py
$node$os${statusdebug}${statusmc}$compiler$boost$java$cmake$eigen3$ns3$py
$node$os$compiler$boost$java$cmake$ns3$py
$node$os<${ball}><${icons[disabled]}>$compiler$boost$java$cmake$eigen3$ns3$py
"