Skip to content
Snippets Groups Projects

Gitlab CI

Merged Boman Romain requested to merge gitlab-ci into master
1 file
+ 13
2
Compare changes
  • Side-by-side
  • Inline
+ 13
2
@@ -7,7 +7,7 @@ stages:
- build
- test
build_gcc:
full_build:
stage: build
script:
- source /opt/intel/mkl/bin/mklvars.sh intel64
@@ -16,7 +16,6 @@ build_gcc:
- rm -rf build workspace
- mkdir build
- cd build
# - cmake -Wno-dev -C ../CMake/disable-trilinos.cmake ..
- cmake -Wno-dev ..
- make -j 4
artifacts:
@@ -24,6 +23,18 @@ build_gcc:
- 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:
Loading