Mentions légales du service

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

Fix some issue with the CI

parent 9e7fd7e2
No related branches found
No related tags found
No related merge requests found
...@@ -275,12 +275,6 @@ sonarqube: ...@@ -275,12 +275,6 @@ sonarqube:
- sonar.log - sonar.log
script: script:
- cat *.log > chameleon_build.log - cat *.log > chameleon_build.log
- lcov -a $PWD/chameleon_starpu.lcov
-a $PWD/chameleon_starpu_simgrid.lcov
-a $PWD/chameleon_quark.lcov
-a $PWD/chameleon_parsec.lcov
-o $PWD/chameleon.lcov
- lcov_cobertura.py chameleon.lcov --output chameleon_coverage.xml
- ./tools/analysis.sh - ./tools/analysis.sh
only: only:
- master@solverstack/chameleon - master@solverstack/chameleon
...@@ -297,7 +291,7 @@ pages: ...@@ -297,7 +291,7 @@ pages:
- cd build - cd build
- cmake .. -DCHAMELEON_ENABLE_DOC=ON - cmake .. -DCHAMELEON_ENABLE_DOC=ON
- make doc -j5 - make doc -j5
- mv docs/doxygen ../public/ - mv doc/doxygen ../public/
- mv docs/orgmode ../public/ - mv doc/orgmode ../public/
only: only:
- master@solverstack/chameleon - master@solverstack/chameleon
...@@ -2,5 +2,7 @@ set(BUILD_SHARED_LIBS "ON" CACHE BOOL "") ...@@ -2,5 +2,7 @@ set(BUILD_SHARED_LIBS "ON" CACHE BOOL "")
set(CMAKE_INSTALL_PREFIX "$ENV{PWD}/install" CACHE PATH "") set(CMAKE_INSTALL_PREFIX "$ENV{PWD}/install" CACHE PATH "")
set(CMAKE_VERBOSE_MAKEFILE "ON" CACHE BOOL "") set(CMAKE_VERBOSE_MAKEFILE "ON" CACHE BOOL "")
option(MORSE_ENABLE_WARNING "Enable warning messages" ON) option(MORSE_ENABLE_WARNING "Enable warning messages" ON)
option(MORSE_ENABLE_COVERAGE "Enable flags for coverage test" ON) option(MORSE_ENABLE_COVERAGE "Enable flags for coverage test" ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON CACHE BOOL "")
...@@ -11,10 +11,20 @@ ...@@ -11,10 +11,20 @@
# - exclude cblas.h and lapacke-.h because not really part of chameleon and make cppcheck analysis too long # - exclude cblas.h and lapacke-.h because not really part of chameleon and make cppcheck analysis too long
./tools/find_sources.sh ./tools/find_sources.sh
# Generate coverage xml output
lcov -a $PWD/chameleon_starpu.lcov
-a $PWD/chameleon_starpu_simgrid.lcov
-a $PWD/chameleon_quark.lcov
-a $PWD/chameleon_parsec.lcov
-o $PWD/chameleon.lcov
lcov_cobertura.py chameleon.lcov --output chameleon_coverage.xml
# Undefine this because not relevant in our configuration # Undefine this because not relevant in our configuration
export UNDEFINITIONS="-UCHAMELEON_USE_OPENCL -UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus" export UNDEFINITIONS="-UCHAMELEON_USE_OPENCL -UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus"
# run cppcheck analysis # run cppcheck analysis
cppcheck -v -f --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingInclude ${UNDEFINITIONS} --file-list=./filelist.txt 2> chameleon_cppcheck.xml cppcheck -v -f --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingInclude ${UNDEFINITIONS} --file-list=./filelist.txt 2> chameleon_cppcheck.xml
# run rats analysis # run rats analysis
rats -w 3 --xml `cat filelist.txt` > chameleon_rats.xml rats -w 3 --xml `cat filelist.txt` > chameleon_rats.xml
...@@ -46,6 +56,7 @@ sonar.c.coverage.reportPath=chameleon_coverage.xml ...@@ -46,6 +56,7 @@ sonar.c.coverage.reportPath=chameleon_coverage.xml
sonar.c.cppcheck.reportPath=chameleon_cppcheck.xml sonar.c.cppcheck.reportPath=chameleon_cppcheck.xml
sonar.c.rats.reportPath=chameleon_rats.xml sonar.c.rats.reportPath=chameleon_rats.xml
sonar.c.clangsa.reportPath=build/analyzer_reports/*/*.plist sonar.c.clangsa.reportPath=build/analyzer_reports/*/*.plist
sonar.c.jsonCompilationDatabase=build/compile_commands.json
EOF EOF
# run sonar analysis + publish on sonarqube-dev # run sonar analysis + publish on sonarqube-dev
......
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