X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f291bc38dbca77fe6065a70677ea89fcaecf27f8..c189a4d09de372fdd7e607bcb8de17cca8a921ee:/tools/jenkins/Coverage.sh diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index 1563682163..c9bb23bdae 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -62,7 +62,7 @@ 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" @@ -84,7 +84,7 @@ 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 @@ -111,12 +111,8 @@ if [ -f Testing/TAG ] ; then 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 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