Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 66ddec96 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Reduce the number of files to analyze

parent 860a7206
No related branches found
No related tags found
No related merge requests found
......@@ -33,15 +33,15 @@ sonar.login=$SONARQUBE_LOGIN
sonar.links.homepage=$CI_PROJECT_URL
sonar.links.scm=$CI_REPOSITORY_URL
sonar.links.ci=https://gitlab.inria.fr/$CI_PROJECT_NAMESPACE/chameleon/pipelines
sonar.links.issue=https://gitlab.inria.fr/$CI_PROJECT_NAMESPACE/chameleon/issues
sonar.links.ci=$CI_PROJECT_URL/pipelines
sonar.links.issue=$CI_PROJECT_URL/issues
sonar.projectKey=hiepacs:chameleon:gitlab:$CI_PROJECT_NAMESPACE:$CI_COMMIT_REF_NAME
sonar.projectDescription=Dense linear algebra subroutines for heterogeneous and distributed architectures
sonar.projectVersion=0.9
sonar.language=c
sonar.sources=build-openmp, build-parsec, build-quark, build-starpu, build-starpu_simgrid, compute, control, coreblas, example, include, runtime, testing, timing
sonar.sources=build-openmp/runtime/openmp, build-parsec/runtime/parsec, build-quark/runtime/quark, build-starpu, compute, control, coreblas, example, include, runtime, testing, timing
sonar.inclusions=`cat filelist.txt | sed ':a;N;$!ba;s/\n/, /g'`
sonar.c.includeDirectories=$(echo | gcc -E -Wp,-v - 2>&1 | grep "^ " | tr '\n' ',').,$(find . -type f -name '*.h' | sed -r 's|/[^/]+$||' |sort |uniq | xargs echo | sed -e 's/ /,/g'),$PARSEC_DIR/include,$QUARK_DIR/include,$STARPU_DIR/include/starpu/1.2,$SIMGRID_DIR/include
sonar.sourceEncoding=UTF-8
......
#!/bin/sh
set -x
SRCDIR_TO_ANALYZE="build-openmp build-parsec build-quark build-starpu build-starpu_simgrid compute control coreblas example include runtime testing timing"
SRCDIR_TO_ANALYZE="build-openmp/runtime/openmp build-parsec/runtime/parsec build-quark/runtime/quark build-starpu compute control coreblas example include runtime testing timing"
echo $PWD
rm -f filelist.txt
......
......@@ -17,7 +17,7 @@ function gen_changelog()
#echo $line
done
changelog="$changelog\nWARNING: Download the source archive by clicking on the link __Download release__ above, please do not consider the link Source code to get all submodules.\n"
changelog="${changelog}\nWARNING: Download the source archive by clicking on the link __Download release__ above, please do not consider the link Source code to get all submodules.\n"
}
release=""
......@@ -50,6 +50,7 @@ MYURL=`eval $GETURL | jq .url | sed "s#\"##g"`
# extract the change log from ChangeLog
gen_changelog
echo $changelog
# Try to remove the release if it already exists
curl --request DELETE --header "PRIVATE-TOKEN: $RELEASE_TOKEN" https://gitlab.inria.fr/api/v4/projects/$CI_PROJECT_ID/releases/v$RELEASE_NAME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment