Skip to content
Snippets Groups Projects
Commit 86f7878f authored by Adrien Crovato's avatar Adrien Crovato
Browse files

Merge remote-tracking branch 'origin/master' into adrien

parents 97278a76 bb7a8408
No related branches found
No related tags found
1 merge request!46Msys build
Pipeline #479 passed
# gitlab-ci file for waves
default:
image: rboman/waves
stages:
- build
- test
full_build:
stage: build
script:
- source /opt/intel/mkl/bin/mklvars.sh intel64
- source /opt/intel/tbb/bin/tbbvars.sh intel64
- printenv | sort
- rm -rf build workspace
- mkdir build
- cd build
- cmake -Wno-dev ..
- make -j 4
artifacts:
paths:
- build/
expire_in: 1 hour
build_no_tlnos:
stage: build
script:
- source /opt/intel/mkl/bin/mklvars.sh intel64
- source /opt/intel/tbb/bin/tbbvars.sh intel64
- printenv | sort
- rm -rf build workspace
- mkdir build
- cd build
- cmake -Wno-dev -C ../CMake/disable-trilinos.cmake ..
- make -j 4
doxygen:
stage: test
script:
- cd build
- make dox
artifacts:
paths:
- build/doxygen/
expire_in: 1 day
ctest:
stage: test
script:
- source /opt/intel/mkl/bin/mklvars.sh intel64
- source /opt/intel/tbb/bin/tbbvars.sh intel64
- cd build
- ctest -j 4 #--verbose
#timeout: 10 hours # will be available in 12.3
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