From 2c30cea38c429adf6e0cb577bd60c2a34d6e4c88 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Fri, 17 Mar 2017 10:10:55 +0100 Subject: [PATCH] add gitlab-ci test for simulation mode and enable verbose mode for all ctests --- .gitlab-ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8897baaae..845c9f0de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,17 @@ starpu: - ctest -R test_shm_s - cmake .. -DCHAMELEON_USE_MPI=ON -DCMAKE_INSTALL_PREFIX=$PWD/install - make -j2 - - ctest -R mpi_s + - ctest -V -R mpi_s + +starpu-simgrid: + script: + - git submodule init + - git submodule update + - mkdir build + - cd build + - cmake .. -DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MAGMA=OFF -DCHAMELEON_USE_MPI=OFF + - make -j2 + - ctest -V quark: script: @@ -19,4 +29,4 @@ quark: - cd build - cmake .. -DCHAMELEON_SCHED_QUARK=ON - make -j2 - - ctest -R test_shm_s \ No newline at end of file + - ctest -V -R test_shm_s \ No newline at end of file -- GitLab