Skip to content
Snippets Groups Projects
Commit 200f264f authored by Boman Romain's avatar Boman Romain
Browse files

test multi-stage

parent 66f240ae
No related branches found
No related tags found
1 merge request!47Gitlab CI
Pipeline #421 failed
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment