Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
05aae414
Commit
05aae414
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
More factorization
parent
113eb878
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+29
-20
29 additions, 20 deletions
.gitlab-ci.yml
with
29 additions
and
20 deletions
.gitlab-ci.yml
+
29
−
20
View file @
05aae414
image
:
hpclib/hiepacs
.test_starpu_cuda_mpi_template
:
&test_starpu_cuda_mpi_script
.build_script_template
:
&build_script
stage
:
build
script
:
-
echo $TESTS_RESTRICTION
-
echo BUILD_OPTIONS $BUILD_OPTIONS
-
echo BUILD_LOG $BUILD_LOG
-
(cd build &&
cmake -C ../cmake_modules/gitlab-ci-initial-cache.cmake ..
$BUILD_OPTIONS &&
ctest --no-compress-output -V -j
5
-D ExperimentalBuild
-D ExperimentalSubmit
| tee $BUILD_LOG)
-
(cd build &&
make install | tee -a $BUILD_LOG &&
rm install/ -r)
.test_script_template
:
&test_script
stage
:
test
script
:
-
echo TESTS_RESTRICTION $TESTS_RESTRICTION
-
echo BUILD_LOG $BUILD_LOG
-
echo BUILD_COVERAGE $BUILD_COVERAGE
-
(cd build &&
ctest --no-compress-output -V
$TESTS_RESTRICTION
-D ExperimentalTest
-D ExperimentalCoverage
-D ExperimentalSubmit
| tee -a
../chameleon-build-starpu.log
)
-
lcov --directory build --capture --output-file
chameleon_starpu_mpi.lcov
| tee -a
$BUILD_LOG
)
-
lcov --directory build --capture --output-file
$BUILD_COVERAGE
stages
:
-
build
...
...
@@ -24,29 +43,21 @@ before_script:
-
mkdir -p build
build_starpu_cuda_mpi
:
stage
:
build
<<
:
*
build
_script
artifacts
:
name
:
build_starpu_cuda_mpi
expire_in
:
48 hours
paths
:
-
build
-
chameleon-build-starpu.log
script
:
-
(cd build &&
cmake -C ../cmake_modules/gitlab-ci-initial-cache.cmake ..
-DCHAMELEON_USE_CUDA=ON
-DCHAMELEON_USE_MPI=ON &&
ctest --no-compress-output -V -j
5
-D ExperimentalBuild
-D ExperimentalSubmit
| tee ../chameleon-build-starpu.log)
-
(cd build &&
make install | tee -a ../chameleon-build-starpu.log &&
rm install/ -r)
variables
:
BUILD_OPTIONS
:
"
-DCHAMELEON_USE_CUDA=ON
-DCHAMELEON_USE_MPI=ON"
BUILD_LOG
:
../chameleon-build-starpu.log
test_starpu_cuda_mpi
:
<<
:
*test_starpu_cuda_mpi_script
stage
:
test
variables
:
TESTS_RESTRICTION
:
"
-R
\"
test_shm_s|mpi_s
\"
"
dependencies
:
-
build_starpu_cuda_mpi
artifacts
:
...
...
@@ -56,8 +67,6 @@ test_starpu_cuda_mpi:
-
build
-
chameleon-build-starpu.log
-
chameleon_starpu_mpi.lcov
variables
:
TESTS_RESTRICTION
:
"
-R
\"
test_shm_s|mpi_s
\"
"
sonar
:
stage
:
analysis
...
...
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