X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a0bf1b8a5858a914ebf40fd189a83d4fbc5f9de..da89556656a508569716eb5738a0ffcf58faa752:/tools/jenkins/Coverage.sh?ds=sidebyside diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index fca49e660b..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 @@ -62,11 +62,11 @@ cmake -Denable_documentation=OFF -Denable_lua=ON -Denable_java=ON \ -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=ON -Denable_coverage=ON $WORKSPACE #build with sonarqube scanner wrapper -/home/ci/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-outputs make -j$NUMPROC +/home/ci/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-outputs make -j$NUMPROC tests JACOCO_PATH="/usr/local/share/jacoco" export JAVA_TOOL_OPTIONS="-javaagent:${JACOCO_PATH}/lib/jacocoagent.jar" -export PYTHON_TOOL_OPTIONS="/usr/bin/python3-coverage run --branch" +export PYTHON_TOOL_OPTIONS="/usr/bin/python3-coverage run --parallel-mode --branch" ctest --no-compress-output -D ExperimentalTest -j$NUMPROC || true ctest -D ExperimentalCoverage || true @@ -84,24 +84,17 @@ if [ -f Testing/TAG ] ; then #convert jacoco xml reports in cobertura xml reports cover2cover.py $BUILDFOLDER/${sourcepath}/report.xml .. ../src/bindings/java src/bindings/java > $BUILDFOLDER/java_coverage_${i}.xml #save jacoco xml report as sonar only allows it - mv $BUILDFOLDER/${sourcepath}/report.xml $BUILDFOLDER/jacoco_coverage_${i}.xml + mv $BUILDFOLDER/${sourcepath}/report.xml $BUILDFOLDER/jacoco_cov_${i}.xml i=$((i + 1)) done - cd $WORKSPACE - - files=$( find . -size +1c -name ".coverage" ) - i=0 - for file in $files - do - sourcepath=$( dirname $file ) - #convert python coverage reports in xml ones - cd $sourcepath - /usr/bin/python3-coverage xml -i -o $BUILDFOLDER/python_coverage_${i}.xml - cd $WORKSPACE - i=$((i + 1)) - done + #convert python coverage reports in xml ones + cd $BUILDFOLDER + find .. -size +1c -name ".coverage*" -exec mv {} . \; + /usr/bin/python3-coverage combine + /usr/bin/python3-coverage xml -i -o ./python_coverage.xml + cd $WORKSPACE #convert all gcov reports to xml cobertura reports gcovr -r . --xml-pretty -e teshsuite -u -o $BUILDFOLDER/xml_coverage.xml xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl build/Testing/$( head -n 1 < build/Testing/TAG )/Test.xml > CTestResults_memcheck.xml @@ -109,22 +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 - for report in $BUILDFOLDER/python_cov* - do - if [ ! -e "$report" ]; then continue; fi - java -jar /home/ci/codacy-coverage-reporter-*-assembly.jar report -l Python -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 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