X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc76978b5d38ebc9ec52ed90a929a68591e599cd..71e4e3a4367ae2a642ddeb4038e98f7955838b9a:/tools/jenkins/Coverage.sh diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index c9bb23bdae..a69bc5f3d3 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -9,39 +9,39 @@ die() { exit 1 } -do_cleanup() { - for d in "$BUILDFOLDER" +### Check the node installation + +pkg_check() { + for pkg do - if [ -d "$d" ] + if command -v $pkg then - rm -rf "$d" || die "Could not remote $d" + echo "$pkg is installed. Good." + else + die "please install $pkg before proceeding" fi done } -### Check the node installation - -for pkg in xsltproc gcovr ant cover2cover.py -do - if command -v $pkg - then - echo "$pkg is installed. Good." - else - die "please install $pkg before proceeding" - fi -done +pkg_check xsltproc gcovr ant cover2cover.py ### Cleanup previous runs ! [ -z "$WORKSPACE" ] || die "No WORKSPACE" [ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" -do_cleanup +do_cleanup() { + for d + do + if [ -d "$d" ] + then + rm -rf "$d" || die "Could not remove $d" + fi + mkdir "$d" || die "Could not create $d" + done +} -for d in "$BUILDFOLDER" -do - mkdir "$d" || die "Could not create $d" -done +do_cleanup "$BUILDFOLDER" NUMPROC="$(nproc)" || NUMPROC=1 @@ -102,18 +102,4 @@ if [ -f Testing/TAG ] ; then #generate sloccount report sloccount --duplicates --wide --details $WORKSPACE | grep -v -e '.git' -e 'mpich3-test' -e 'sloccount.sc' -e 'isp/umpire' -e 'build/' -e 'xml_coverage.xml' -e 'CTestResults_memcheck.xml' -e 'DynamicAnalysis.xml' > $WORKSPACE/sloccount.sc - #upload files to codacy. CODACY_PROJECT_TOKEN must be setup ! - if ! [ -z $CODACY_PROJECT_TOKEN ] - then - for report in $BUILDFOLDER/java_cov* - do - if [ ! -e "$report" ]; then continue; fi - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar report -l Java -r $report --partial - done - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar final - - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar report -l Python -r $BUILDFOLDER/python_coverage.xml - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar report -l C -f -r $BUILDFOLDER/xml_coverage.xml - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar report -l CPP -f -r $BUILDFOLDER/xml_coverage.xml - fi -fi +fi || exit 42