From 2438e2b51884fd93b9a429b4302b1edb4fd0161c Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 11 Sep 2019 14:52:33 +0200 Subject: [PATCH] remove codacy. It was redundant and the project was deactivated on the website. --- tools/jenkins/Coverage.sh | 14 -------------- 1 file changed, 14 deletions(-) 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 -- 2.20.1