X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df1faf3e08b0a46f32b7c482b9e82e6b7bd0bbf6..501b1d3f4293a4a3c27ad38fd74e995584799576:/tools/jenkins/project_description.sh diff --git a/tools/jenkins/project_description.sh b/tools/jenkins/project_description.sh index 5311785371..8af5e8d804 100755 --- a/tools/jenkins/project_description.sh +++ b/tools/jenkins/project_description.sh @@ -1,30 +1,213 @@ -#!/bin/bash +#!/usr/bin/env bash +get_boost(){ + 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(){ + grep -m 1 "The C compiler identification" ./consoleText | sed "s/.*-- The C compiler identification is \([a-zA-Z0-9\.]*\)/\1/g" +} + +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_json(){ + sed -n 's/.* JSON library \.\+: \([^ ]*\) in .*/\1/p;T;q' ./consoleText +} + +get_ns3(){ + sed -n 's/.*-- ns-3 found (v\(3[-.0-9a-z]\+\).*/\1/p;T;q' ./consoleText +} + +get_python(){ + found=$(grep -c "Compile Python bindings .....: ON" ./consoleText) + if [ "$found" != 0 ]; then + grep -m 1 "Found Python3" ./consoleText| sed "s/.*-- Found Python3.*found version \"\([a-zA-Z0-9\.]*\)\".*/\1/g" + else + echo "" + fi +} + +if [ -f consoleText ]; then + rm consoleText +fi + + +if [ -z "$BUILD_URL" ]; then + BUILD_URL="https://ci.inria.fr/simgrid/job/SimGrid/lastBuild" +fi + +#get the list of nodes on jenkins +wget --quiet ${BUILD_URL}/consoleText >/dev/null 2>&1 +nodes=($(sed -n 's/^Triggering SimGrid [^ ]* Debug,//p' ./consoleText| sort)) rm consoleText -wget –quiet https://ci.inria.fr/simgrid/job/SimGrid/lastBuild/consoleText >/dev/null 2>&1 -nodes=($(grep -rR "Triggering SimGrid ? Debug," ./consoleText | sed "s/Triggering SimGrid ? Debug,\(.*\)/\1/g")) -nodes=($(for i in "${nodes[@]}"; do echo "$i"; done | sort)) -rm consoleText -echo "
Info on configurations

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

+ + +
Name of the BuilderOS versionCompiler name and versionBoost versionJava versionCmake version
+ + + + + + + + + + + + + +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 - wget –quiet https://ci.inria.fr/simgrid/job/SimGrid/lastBuild/build_mode=Debug,node=${node}/consoleText >/dev/null 2>&1 + wget --quiet --output-document=consoleText \ + ${BUILD_URL}/build_mode=Debug,node=${node}/consoleText \ + ${BUILD_URL}/build_mode=ModelChecker,node=${node}/consoleText \ + >/dev/null 2>&1 if [ ! -f consoleText ]; then - echo "file not existing for node ${node}" - exit 1 + echo "file not existing for node ${node}" + exit 1 + fi + boost=$(get_boost) + compiler=$(get_compiler) + cmake=$(get_cmake) + eigen3=$(get_eigen3) + json=$(get_json) + 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 + 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 + if [ "$status" == "Success" ]; then + color2="&color=green" + fi + statusmc="" fi - boost=$(grep -m 1 "Boost version:" ./consoleText | sed "s/-- Boost version: \(.*\)/\1/g") - compiler=$(grep -m 1 "The C compiler identification" ./consoleText | sed "s/-- The C compiler identification is \(.*\)/\1/g") - java=$(grep -m 1 "Found Java:" ./consoleText | sed "s/-- Found Java.*found suitable version \"\(.*\)\",.*/\1/g") - cmake=$(grep -m 1 "Cmake version" ./consoleText| sed "s/-- Cmake version \(.*\)/\1/g") - os=$(grep -m 1 "OS Version" ./consoleText| sed "s/OS Version : \(.*\)/\1/g") - echo "" + rm status + + cat < + + + + + + + + + + + + +EOF rm consoleText done -echo " - - -
Name of the BuilderOSDebugMCCompilerBoostCmakeEigen3JSONns-3Python
$node$os$compiler$boost$java$cmake
$node$os${statusdebug}${statusmc}$compiler$boost$cmake$eigen3$json$ns3$py
travis-linuxUbuntu 14.04 (Trusty) 64 bitsGNU 4.8.41.60.01.8.0.1513.9.2
travis-macMac OSX Sierra (kernel: 16.7.0)AppleClang 8.1.0.80200421.65.11.8.0.1123.9.4
appveyorWindows Server 2012 - VS2015 + mingw64 5.3.0GNU 5.3.01.60.01.8.0.1623.11.3
" + +echo ""