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:
paths:
- Build/
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:
stage: sonar
......
......@@ -4,9 +4,9 @@
## # The following are required to uses Dart and the Cdash dashboard
## ENABLE_TESTING()
## INCLUDE(CTest)
set(CTEST_PROJECT_NAME "ScalFMM")
set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")
set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm")
#set(CTEST_PROJECT_NAME "ScalFMM")
#set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")
#set(CTEST_SUBMIT_URL "http://cdash.inria.fr/CDash/submit.php?project=scalfmm")
#--------------------------------------------------------------------
# BUILDNAME variable construction
......@@ -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/
#--------------------------------------------------------------------
# Start with the short system name, e.g. "Linux", "FreeBSD" or "Windows"
if(NOT BUILDNAME)
set(BUILDNAME "${CMAKE_SYSTEM_NAME}")
# Add i386 or amd64
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(BUILDNAME "${BUILDNAME}-amd64")
else()
set(BUILDNAME "${BUILDNAME}-i386")
endif()
# Add compiler name
get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME)
set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}")
# Add the build type, e.g. "Debug, Release..."
if(CMAKE_BUILD_TYPE)
set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}")
endif(CMAKE_BUILD_TYPE)
# Specific options of Scalfmm
if(SCALFMM_USE_SSE)
set(BUILDNAME "${BUILDNAME}-sse")
endif()
if(SCALFMM_USE_BLAS)
set(BUILDNAME "${BUILDNAME}-blas")
endif()
if(SCALFMM_USE_MPI)
set(BUILDNAME "${BUILDNAME}-mpi")
endif()
endif()
#if(NOT BUILDNAME)
#
# set(BUILDNAME "${CMAKE_SYSTEM_NAME}")
#
# # Add i386 or amd64
# if(CMAKE_SIZEOF_VOID_P EQUAL 8)
# set(BUILDNAME "${BUILDNAME}-amd64")
# else()
# set(BUILDNAME "${BUILDNAME}-i386")
# endif()
#
# # Add compiler name
# get_filename_component(CMAKE_CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME)
# set(BUILDNAME "${BUILDNAME}-${CMAKE_CXX_COMPILER_NAME}")
#
# # Add the build type, e.g. "Debug, Release..."
# if(CMAKE_BUILD_TYPE)
# set(BUILDNAME "${BUILDNAME}-${CMAKE_BUILD_TYPE}")
# endif(CMAKE_BUILD_TYPE)
#
# # Specific options of Scalfmm
# if(SCALFMM_USE_SSE)
# set(BUILDNAME "${BUILDNAME}-sse")
# endif()
#
# if(SCALFMM_USE_BLAS)
# set(BUILDNAME "${BUILDNAME}-blas")
# endif()
#
# if(SCALFMM_USE_MPI)
# set(BUILDNAME "${BUILDNAME}-mpi")
# endif()
#
#endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment