compilation test for FEM solver active

This commit is contained in:
Martin Diehl 2018-08-20 09:13:20 +02:00
parent 543c49426f
commit f8ce2565c9
1 changed files with 24 additions and 6 deletions

View File

@ -3,8 +3,8 @@ stages:
- prepareAll - prepareAll
- preprocessing - preprocessing
- postprocessing - postprocessing
- compileSpectralIntel - compilePETScIntel
- compileSpectralGNU - compilePETScGNU
- prepareSpectral - prepareSpectral
- spectral - spectral
- compileMarc2017 - compileMarc2017
@ -186,8 +186,8 @@ Post_ParaviewRelated:
- release - release
################################################################################################### ###################################################################################################
Compile_Intel: Compile_Spectral_Intel:
stage: compileSpectralIntel stage: compilePETScIntel
script: script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel - module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel
- SpectralAll_compile/test.py - SpectralAll_compile/test.py
@ -195,9 +195,18 @@ Compile_Intel:
- master - master
- release - release
Compile_FEM_Intel:
stage: compilePETScIntel
script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel
- FEM_compile/test.py
except:
- master
- release
################################################################################################### ###################################################################################################
Compile_GNU: Compile_Spectral_GNU:
stage: compileSpectralGNU stage: compilePETScGNU
script: script:
- module load $GNUCompiler $MPICH_GNU $PETSc_MPICH_GNU - module load $GNUCompiler $MPICH_GNU $PETSc_MPICH_GNU
- SpectralAll_compile/test.py - SpectralAll_compile/test.py
@ -205,6 +214,15 @@ Compile_GNU:
- master - master
- release - release
Compile_FEM_GNU:
stage: compilePETScGNU
script:
- module load $GNUCompiler $MPICH_GNU $PETSc_MPICH_GNU
- FEM_compile/test.py
except:
- master
- release
################################################################################################### ###################################################################################################
Compile_Intel_Prepare: Compile_Intel_Prepare:
stage: prepareSpectral stage: prepareSpectral