following yamllint suggestions

This commit is contained in:
Martin Diehl 2017-05-17 10:15:30 +02:00
parent eff2b4ca1c
commit ee8afc33cf
1 changed files with 30 additions and 23 deletions

View File

@ -1,3 +1,4 @@
---
stages: stages:
- prepareAll - prepareAll
- preprocessing - preprocessing
@ -23,26 +24,30 @@ stages:
################################################################################################### ###################################################################################################
before_script: before_script:
- if [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue)x == 'x' ]; then echo $CI_PIPELINE_ID >> $TESTROOT/GitLabCI.queue; fi - if [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue)x == 'x' ]
- while [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue) -ne 1 ];do sleep 5m; done then echo $CI_PIPELINE_ID >> $TESTROOT/GitLabCI.queue
fi
- while [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue) != 1 ]
do sleep 5m
done
- source $DAMASKROOT/DAMASK_env.sh - source $DAMASKROOT/DAMASK_env.sh
- cd $DAMASKROOT/PRIVATE/testing - cd $DAMASKROOT/PRIVATE/testing
################################################################################################### ###################################################################################################
variables: variables:
#================================================================================================ # ===============================================================================================
# GitLab Settings # GitLab Settings
#================================================================================================ # ===============================================================================================
GIT_SUBMODULE_STRATEGY: none GIT_SUBMODULE_STRATEGY: none
#================================================================================================ # ===============================================================================================
# Shortcut names # Shortcut names
#================================================================================================ # ===============================================================================================
DAMASKROOT: "$TESTROOT/GitLabCI_Pipeline_$CI_PIPELINE_ID/DAMASK" DAMASKROOT: "$TESTROOT/GitLabCI_Pipeline_$CI_PIPELINE_ID/DAMASK"
#================================================================================================ # ===============================================================================================
# Names of module files to load # Names of module files to load
#================================================================================================ # ===============================================================================================
# ++++++++++++ Compiler ++++++++++++++++++++++++++++++++++++++++++++++ # ++++++++++++ Compiler ++++++++++++++++++++++++++++++++++++++++++++++
IntelCompiler16_0: "Compiler/Intel/16.0 Libraries/IMKL/2016" IntelCompiler16_0: "Compiler/Intel/16.0 Libraries/IMKL/2016"
IntelCompiler17_0: "Compiler/Intel/17.0 Libraries/IMKL/2017" IntelCompiler17_0: "Compiler/Intel/17.0 Libraries/IMKL/2017"
@ -81,11 +86,13 @@ variables:
################################################################################################### ###################################################################################################
checkout: checkout:
stage: prepareAll stage: prepareAll
before_script: before_script:
- echo $CI_PIPELINE_ID >> $TESTROOT/GitLabCI.queue - echo $CI_PIPELINE_ID >> $TESTROOT/GitLabCI.queue
- while [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue) -ne 1 ];do sleep 5m; done - while [ $(awk "/$CI_PIPELINE_ID/{print NR}" $TESTROOT/GitLabCI.queue) != 1 ]
do sleep 5m
done
script: script:
- mkdir -p $DAMASKROOT - mkdir -p $DAMASKROOT
- cd $DAMASKROOT - cd $DAMASKROOT
@ -186,7 +193,7 @@ Post_ParaviewRelated:
################################################################################################### ###################################################################################################
Compile_Intel: Compile_Intel:
stage: compileSpectralIntel stage: compileSpectralIntel
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
@ -214,7 +221,7 @@ Compile_Intel_Prepare:
except: except:
- master - master
- release - release
################################################################################################### ###################################################################################################
Spectral_PackedGeometry: Spectral_PackedGeometry:
stage: spectral stage: spectral
@ -442,9 +449,9 @@ SpectralRuntime:
except: except:
- master - master
- release - release
################################################################################################### ###################################################################################################
AbaqusExp: AbaqusExp:
stage: createDocumentation stage: createDocumentation
script: script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen - module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen
@ -453,7 +460,7 @@ AbaqusExp:
- master - master
- release - release
AbaqusStd: AbaqusStd:
stage: createDocumentation stage: createDocumentation
script: script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen - module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen
@ -462,7 +469,7 @@ AbaqusStd:
- master - master
- release - release
Marc: Marc:
stage: createDocumentation stage: createDocumentation
script: script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen - module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen
@ -471,7 +478,7 @@ Marc:
- master - master
- release - release
Spectral: Spectral:
stage: createDocumentation stage: createDocumentation
script: script:
- module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen - module load $IntelCompiler $MPICH_Intel $PETSc_MPICH_Intel $Doxygen
@ -481,7 +488,7 @@ Spectral:
- release - release
################################################################################################## ##################################################################################################
backupData: backupData:
stage: saveDocumentation stage: saveDocumentation
script: script:
- cd $TESTROOT/performance # location of new runtime results - cd $TESTROOT/performance # location of new runtime results
@ -496,7 +503,7 @@ backupData:
- development - development
################################################################################################## ##################################################################################################
mergeIntoMaster: mergeIntoMaster:
stage: updateMaster stage: updateMaster
script: script:
- cd $DAMASKROOT - cd $DAMASKROOT
@ -527,9 +534,9 @@ removeData:
- release - release
################################################################################################### ###################################################################################################
removeLock: removeLock:
stage: releaseLock stage: releaseLock
before_script: before_script:
- echo 'Do nothing' - echo 'Do nothing'
when: always when: always
script: sed -i "/$CI_PIPELINE_ID/d" $TESTROOT/GitLabCI.queue script: sed -i "/$CI_PIPELINE_ID/d" $TESTROOT/GitLabCI.queue