From: Augustin Degomme Date: Wed, 11 Sep 2019 12:52:33 +0000 (+0200) Subject: remove codacy. X-Git-Tag: v3.24~69^2~19 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2438e2b51884fd93b9a429b4302b1edb4fd0161c?ds=sidebyside remove codacy. It was redundant and the project was deactivated on the website. --- diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index ae1f81bcba..d2f54c1f19 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -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 || exit 42