Skip to content
Snippets Groups Projects

Gitlab CI

Merged Boman Romain requested to merge gitlab-ci into master
1 file
+ 19
4
Compare changes
  • Side-by-side
  • Inline
+ 19
4
stages:
- build
- test
build:
build_gcc:
image: rboman/waves
stage: build
script:
@@ -9,9 +10,23 @@ build:
- cd build
- cmake -Wno-dev -C ../CMake/disable-trilinos.cmake ..
- make -j 4
- ctest -j 4 #--verbose
artifacts:
paths:
- build/bin/
\ No newline at end of file
doxygen:
image: rboman/waves
stage: test
script:
- cd build
- make dox
artifacts:
paths:
- doxygen/
ctest:
image: rboman/waves
stage: test
script:
- cd build
- ctest -j 4 #--verbose
Loading