diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2cba34b7de67749017e6a584b8290354d1787a8c..c6d2a2f0ac4758c81b8d6e7da570251ace305482 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ build_debug: - mkdir build_debug - cd build_debug - cmake -DCOMPILE_TESTS=ON -DCOMPILE_EXAMPLES=ON -DUSE_OMP=ON -DCMAKE_CXX_FLAGS="-O0 -g" -DCMAKE_C_FLAGS="-O0 -g" .. - - make + - make VERBOSE=1 artifacts: paths: - build_debug/ @@ -23,7 +23,7 @@ build_opt: - mkdir build_opt - cd build_opt - cmake -DCOMPILE_TESTS=ON -DCOMPILE_EXAMPLES=ON -DUSE_OMP=ON -DCMAKE_CXX_FLAGS="-Ofast -march=native" -DCMAKE_C_FLAGS="-Ofast -march=native" .. - - make + - make VERBOSE=1 artifacts: paths: - build_opt/