diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b710f488b7801b4cd35ebecf88c9551da9c2157c..816f3c28ceb88d1472e9ce3353eb2b1a45df0419 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,15 +12,32 @@ build_starpu: expire_in: 48 hours paths: - build - - chameleon-build.log + - chameleon-build-starpu.log script: - source .gitlab-ci-env.sh - git submodule update --init --recursive - mkdir -p build - cd build - cmake .. -DCHAMELEON_USE_MPI=ON -DCMAKE_INSTALL_PREFIX=${PWD}/install -DCMAKE_VERBOSE_MAKEFILE=ON -DMORSE_ENABLE_WARNING=ON -DMORSE_ENABLE_COVERAGE=ON - - make | tee ../chameleon-build.log - - make install | tee -a ../chameleon-build.log + - make | tee ../chameleon-build-starpu.log + - make install | tee -a ../chameleon-build-starpu.log + +build_starpu_simgrid: + stage: build + artifacts: + name: starpu_simgrid_build + expire_in: 48 hours + paths: + - build + - chameleon-build-starpu-simgrid.log + script: + - source .gitlab-ci-env.sh simu + - git submodule update --init --recursive + - mkdir -p build + - cd build + - cmake .. -DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF -DCMAKE_INSTALL_PREFIX=${PWD}/install -DCMAKE_VERBOSE_MAKEFILE=ON -DMORSE_ENABLE_WARNING=ON -DMORSE_ENABLE_COVERAGE=ON + - make | tee ../chameleon-build-starpu-simgrid.log + - make install | tee -a ../chameleon-build-starpu-simgrid.log build_quark: stage: build @@ -29,15 +46,15 @@ build_quark: expire_in: 48 hours paths: - build - - chameleon-build.log + - chameleon-build-quark.log script: - source .gitlab-ci-env.sh - git submodule update --init --recursive - mkdir -p build - cd build - cmake .. -DCMAKE_INSTALL_PREFIX=${PWD}/install -DCMAKE_VERBOSE_MAKEFILE=ON -DMORSE_ENABLE_WARNING=ON -DMORSE_ENABLE_COVERAGE=ON -DCHAMELEON_SCHED_QUARK=ON - - make | tee ../chameleon-build.log - - make install | tee -a ../chameleon-build.log + - make | tee ../chameleon-build-quark.log + - make install | tee -a ../chameleon-build-quark.log test_starpu: stage: test @@ -54,12 +71,27 @@ test_starpu: - (cd build && STARPU_SILENT=1 ctest --no-compress-output -R test_shm_s || /usr/bin/true && ctest --no-compress-output -R mpi_s || /usr/bin/true) - find -name "*.gcda" | xargs tar cvjf coverage_starpu.tar.bz2 +test_starpu_simgrid: + stage: test + dependencies: + - build_starpu_simgrid + artifacts: + name: starpu_test + expire_in: 48 hours + paths: + - coverage_starpu_simgrid.tar.bz2 + script: + - source .gitlab-ci-env.sh simu + - git submodule update --init --recursive + - (cd build && STARPU_SILENT=1 ctest --no-compress-output -V || /usr/bin/true) + - find -name "*.gcda" | xargs tar cvjf coverage_starpu_simgrid.tar.bz2 + test_quark: stage: test dependencies: - build_quark artifacts: - name: starpu_test + name: quark_test expire_in: 48 hours paths: - coverage_quark.tar.bz2 @@ -73,8 +105,10 @@ sonar: stage: analysis dependencies: - build_starpu + - build_starpu_simgrid - build_quark - test_starpu + - test_starpu_simgrid - test_quark artifacts: name: chameleon_analysis @@ -88,45 +122,24 @@ sonar: script: - source .gitlab-ci-env.sh - tar xvjf coverage_starpu.tar.bz2 + - tar xvjf coverage_starpu_simgrid.tar.bz2 - tar xvjf coverage_quark.tar.bz2 - ./tools/analysis.sh only: - master - issue53/fix-ci -#starpu-simgrid: -# stage: buildtest -# script: -# - source .gitlab-ci-env.sh simu -# - git submodule update --init --recursive -# - mkdir -p build -# - cd build -# - cmake .. -DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF -# - make -j2 -# - ctest -V -# -#quark: -# stage: buildtest -# script: -# - source .gitlab-ci-env.sh -# - git submodule update --init --recursive -# - mkdir -p build -# - cd build -# - cmake .. -DCHAMELEON_SCHED_QUARK=ON -# - make -j2 -# - ctest -V -R test_shm_s - -#doc: -# artifacts: -# name: chameleon_doc -# expire_in: 1 week -# paths: -# - build/doc/doxygen -# - build/doc/orgmode -# script: -# - source .gitlab-ci-env.sh -# - git submodule update --init --recursive -# - mkdir -p build -# - cd build -# - cmake .. -DCHAMELEON_ENABLE_DOC=ON -DCHAMELEON_ENABLE_EXAMPLE=OFF -DCHAMELEON_ENABLE_TESTING=OFF -DCHAMELEON_ENABLE_TIMING=OFF -# - make doc +doc: + artifacts: + name: chameleon_doc + expire_in: 1 week + paths: + - build/doc/doxygen + - build/doc/orgmode + script: + - source .gitlab-ci-env.sh + - git submodule update --init --recursive + - mkdir -p build + - cd build + - cmake .. -DCHAMELEON_ENABLE_DOC=ON -DCHAMELEON_ENABLE_EXAMPLE=OFF -DCHAMELEON_ENABLE_TESTING=OFF -DCHAMELEON_ENABLE_TIMING=OFF + - make doc diff --git a/tools/analysis.sh b/tools/analysis.sh index aae592c5f3d58c2f7a15bfd501d38923d5f306e2..b6a091f6a906e5bfca51dbfd76b677f98003fb3e 100755 --- a/tools/analysis.sh +++ b/tools/analysis.sh @@ -51,7 +51,7 @@ sonar.sourceEncoding=UTF-8 sonar.cxx.compiler.charset=UTF-8 sonar.cxx.compiler.parser=GCC sonar.cxx.compiler.regex=^(.*):(\\d+):\\d+: warning: (.*)\\[(.*)\\]$ -sonar.cxx.compiler.reportPath=chameleon-build.log +sonar.cxx.compiler.reportPath=chameleon-build-starpu.log, chameleon-build-starpu-simgrid.log, chameleon-build-quark.log sonar.cxx.coverage.reportPath=chameleon-coverage.xml sonar.cxx.cppcheck.reportPath=chameleon-cppcheck.xml sonar.cxx.rats.reportPath=chameleon-rats.xml