Mentions légales du service

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

Fix list of files

parent b0b6e34f
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,6 @@ then ...@@ -6,8 +6,6 @@ then
fi fi
BUILDDIR=${BUILDDIR-=build} BUILDDIR=${BUILDDIR-=build}
SRCDIR_TO_ANALYZE="$BUILDDIR include src tests"
echo $PWD echo $PWD
rm -f filelist.txt rm -f filelist.txt
...@@ -17,7 +15,7 @@ find $BUILDDIR -name '*\.[ch]' >> filelist.txt ...@@ -17,7 +15,7 @@ find $BUILDDIR -name '*\.[ch]' >> filelist.txt
#echo "wrappers/python/examples/pypastix/enum.py" >> filelist.txt #echo "wrappers/python/examples/pypastix/enum.py" >> filelist.txt
# Remove all CMakeFiles generated file # Remove all CMakeFiles generated file
#sed -i '/CMakeFiles/d' filelist.txt sed -i '/CMakeFiles/d' filelist.txt
# Remove installed files # Remove installed files
sed -i '/^install.*/d' filelist.txt sed -i '/^install.*/d' filelist.txt
......
...@@ -69,8 +69,8 @@ include(GenSPMPkgConfig) ...@@ -69,8 +69,8 @@ include(GenSPMPkgConfig)
include(AddSourceFiles) include(AddSourceFiles)
# The current version number # The current version number
set (SPM_VERSION_MAJOR 0) set (SPM_VERSION_MAJOR 1)
set (SPM_VERSION_MINOR 1) set (SPM_VERSION_MINOR 0)
set (SPM_VERSION_MICRO 0) set (SPM_VERSION_MICRO 0)
set( SPM_VERSION "${SPM_VERSION_MAJOR}.${SPM_VERSION_MINOR}.${SPM_VERSION_MICRO}" ) set( SPM_VERSION "${SPM_VERSION_MAJOR}.${SPM_VERSION_MINOR}.${SPM_VERSION_MICRO}" )
......
...@@ -23,7 +23,6 @@ lcov_cobertura.py spm.lcov --output spm-coverage.xml ...@@ -23,7 +23,6 @@ lcov_cobertura.py spm.lcov --output spm-coverage.xml
# Undefine this because not relevant in our configuration # Undefine this because not relevant in our configuration
export UNDEFINITIONS="-UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus" export UNDEFINITIONS="-UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus"
export UNDEFINITIONS="$UNDEFINITIONS -UPARSEC_PROF_DRY_BODY -UPARSEC_PROF_TRACE -UPARSEC_PROF_GRAPHER -UPARSEC_SIM -UPARSEC_DEBUG_NOISIER -DPINS_ENABLE"
# to get it displayed and captured by gitlab to expose the badge on the main page # to get it displayed and captured by gitlab to expose the badge on the main page
cat ./spm-gcov.log cat ./spm-gcov.log
...@@ -52,7 +51,7 @@ sonar.projectDescription=Parallel Sparse direct Solver ...@@ -52,7 +51,7 @@ sonar.projectDescription=Parallel Sparse direct Solver
sonar.projectVersion=master sonar.projectVersion=master
sonar.language=c sonar.language=c
sonar.sources=$BUILDDIR, include, src, tests sonar.sources=$BUILDDIR/src, $BUILDDIR/tests, include, src, tests
sonar.inclusions=`cat filelist.txt | xargs echo | sed 's/ /, /g'` sonar.inclusions=`cat filelist.txt | xargs echo | sed 's/ /, /g'`
sonar.sourceEncoding=UTF-8 sonar.sourceEncoding=UTF-8
sonar.c.errorRecoveryEnabled=true sonar.c.errorRecoveryEnabled=true
......
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