Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2ce8443d authored by ESTERIE Pierre's avatar ESTERIE Pierre
Browse files

firs fixes test CI

parent b77f1e0e
No related branches found
No related tags found
No related merge requests found
Pipeline #246892 failed
...@@ -74,7 +74,7 @@ test: ...@@ -74,7 +74,7 @@ test:
paths: paths:
- Build/ - Build/
script: script:
- (cd Build && OMP_NUM_THREADS=4 ctest --no-compress-output -VV -j 5 -D ExperimentalBuild -D ExperimentalTest -D ExperimentalCoverage -D ExperimentalSubmit) - (cd Build && OMP_NUM_THREADS=4 ctest --no-compress-output -VV -j 5)
sonar: sonar:
stage: sonar stage: sonar
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
## # The following are required to uses Dart and the Cdash dashboard ## # The following are required to uses Dart and the Cdash dashboard
## ENABLE_TESTING() ## ENABLE_TESTING()
## INCLUDE(CTest) ## INCLUDE(CTest)
set(CTEST_PROJECT_NAME "ScalFMM") #set(CTEST_PROJECT_NAME "ScalFMM")
set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT") #set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")
set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm") #set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm")
#-------------------------------------------------------------------- #--------------------------------------------------------------------
# BUILDNAME variable construction # BUILDNAME variable construction
...@@ -14,37 +14,37 @@ set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm") ...@@ -14,37 +14,37 @@ set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm")
# on the Chameleon dashboard http://cdash.inria.fr/CDash/ # on the Chameleon dashboard http://cdash.inria.fr/CDash/
#-------------------------------------------------------------------- #--------------------------------------------------------------------
# Start with the short system name, e.g. "Linux", "FreeBSD" or "Windows" # Start with the short system name, e.g. "Linux", "FreeBSD" or "Windows"
if(NOT BUILDNAME) #if(NOT BUILDNAME)
#
set(BUILDNAME "${CMAKE_SYSTEM_NAME}") # set(BUILDNAME "${CMAKE_SYSTEM_NAME}")
#
# Add i386 or amd64 # # Add i386 or amd64
if(CMAKE_SIZEOF_VOID_P EQUAL 8) # if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(BUILDNAME "${BUILDNAME}-amd64") # set(BUILDNAME "${BUILDNAME}-amd64")
else() # else()
set(BUILDNAME "${BUILDNAME}-i386") # set(BUILDNAME "${BUILDNAME}-i386")
endif() # endif()
#
# Add compiler name # # Add compiler name
get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) # get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME)
set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}") # set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}")
#
# Add the build type, e.g. "Debug, Release..." # # Add the build type, e.g. "Debug, Release..."
if(CMAKE_BUILD_TYPE) # if(CMAKE_BUILD_TYPE)
set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}") # set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}")
endif(CMAKE_BUILD_TYPE) # endif(CMAKE_BUILD_TYPE)
#
# Specific options of Scalfmm # # Specific options of Scalfmm
if(SCALFMM_USE_SSE) # if(SCALFMM_USE_SSE)
set(BUILDNAME "${BUILDNAME}-sse") # set(BUILDNAME "${BUILDNAME}-sse")
endif() # endif()
#
if(SCALFMM_USE_BLAS) # if(SCALFMM_USE_BLAS)
set(BUILDNAME "${BUILDNAME}-blas") # set(BUILDNAME "${BUILDNAME}-blas")
endif() # endif()
#
if(SCALFMM_USE_MPI) # if(SCALFMM_USE_MPI)
set(BUILDNAME "${BUILDNAME}-mpi") # set(BUILDNAME "${BUILDNAME}-mpi")
endif() # endif()
#
endif() #endif()
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