Mentions légales du service

Skip to content
Snippets Groups Projects

Sonarqube /hotfix

Merged Mathieu Faverge requested to merge faverge/chameleon:sonarqube/hotfix into master
1 file
+ 29
20
Compare changes
  • Side-by-side
  • Inline
+ 29
20
image: hpclib/hiepacs
image: hpclib/hiepacs
.test_starpu_cuda_mpi_template: &test_starpu_cuda_mpi_script
.build_script_template: &build_script
 
stage: build
script:
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 &&
- (cd build &&
ctest --no-compress-output -V
ctest --no-compress-output -V
$TESTS_RESTRICTION
$TESTS_RESTRICTION
-D ExperimentalTest
-D ExperimentalTest
-D ExperimentalCoverage
-D ExperimentalCoverage
-D ExperimentalSubmit
-D ExperimentalSubmit
| tee -a ../chameleon-build-starpu.log)
| tee -a $BUILD_LOG)
- lcov --directory build --capture --output-file chameleon_starpu_mpi.lcov
- lcov --directory build --capture --output-file $BUILD_COVERAGE
stages:
stages:
- build
- build
@@ -24,29 +43,21 @@ before_script:
@@ -24,29 +43,21 @@ before_script:
- mkdir -p build
- mkdir -p build
build_starpu_cuda_mpi:
build_starpu_cuda_mpi:
stage: build
<<: *build_script
artifacts:
artifacts:
name: build_starpu_cuda_mpi
name: build_starpu_cuda_mpi
expire_in: 48 hours
expire_in: 48 hours
paths:
paths:
- build
- build
- chameleon-build-starpu.log
- chameleon-build-starpu.log
script:
variables:
- (cd build &&
BUILD_OPTIONS: "-DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=ON"
cmake -C ../cmake_modules/gitlab-ci-initial-cache.cmake ..
BUILD_LOG: ../chameleon-build-starpu.log
-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)
test_starpu_cuda_mpi:
test_starpu_cuda_mpi:
<<: *test_starpu_cuda_mpi_script
<<: *test_starpu_cuda_mpi_script
stage: test
variables:
 
TESTS_RESTRICTION: "-R \"test_shm_s|mpi_s\""
dependencies:
dependencies:
- build_starpu_cuda_mpi
- build_starpu_cuda_mpi
artifacts:
artifacts:
@@ -56,8 +67,6 @@ test_starpu_cuda_mpi:
@@ -56,8 +67,6 @@ test_starpu_cuda_mpi:
- build
- build
- chameleon-build-starpu.log
- chameleon-build-starpu.log
- chameleon_starpu_mpi.lcov
- chameleon_starpu_mpi.lcov
variables:
TESTS_RESTRICTION: "-R \"test_shm_s|mpi_s\""
sonar:
sonar:
stage: analysis
stage: analysis
Loading