Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
ScalFMM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
solverstack
ScalFMM
Commits
6d0c5b37
Commit
6d0c5b37
authored
4 years ago
by
ESTERIE Pierre
Browse files
Options
Downloads
Patches
Plain Diff
Remove CDash for now
parent
7312230d
No related branches found
No related tags found
No related merge requests found
Pipeline
#242785
failed
4 years ago
Stage: build
Stage: pages
Stage: test
Stage: sonar
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CTestConfig.cmake
+37
-37
37 additions, 37 deletions
CTestConfig.cmake
with
37 additions
and
37 deletions
CTestConfig.cmake
+
37
−
37
View file @
6d0c5b37
...
@@ -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()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment