separte gitlab ci jobs for test sets
This commit is contained in:
parent
7bce61e8a3
commit
4f327884ce
1 changed files with 29 additions and 3 deletions
|
|
@ -28,7 +28,7 @@ allwmake:
|
|||
expire_in: 1 hour
|
||||
|
||||
|
||||
canteraTest:
|
||||
canteraTestPure:
|
||||
stage: test
|
||||
tags:
|
||||
- openfoam4
|
||||
|
|
@ -38,11 +38,37 @@ canteraTest:
|
|||
- wmake testApp
|
||||
- cd testApp
|
||||
- ./Alltest
|
||||
- ./Alltest2.py c2h6_diffusion.csv diffusion
|
||||
- ./Alltest2.py ch4_adiabatic.csv premixed
|
||||
artifacts:
|
||||
paths:
|
||||
- testApp/cases/*/canteraTest.log
|
||||
when: always
|
||||
|
||||
canteraTestDiffusionFlame:
|
||||
stage: test
|
||||
tags:
|
||||
- openfoam4
|
||||
script:
|
||||
- cd ${CI_PROJECT_DIR}
|
||||
- wmake diffusivityModel
|
||||
- wmake testApp
|
||||
- cd testApp
|
||||
- ./Alltest2.py c2h6_diffusion.csv diffusion
|
||||
artifacts:
|
||||
paths:
|
||||
- testApp/diffusion/*/canteraTest.log
|
||||
when: always
|
||||
|
||||
canteraTestPremixedFlame:
|
||||
stage: test
|
||||
tags:
|
||||
- openfoam4
|
||||
script:
|
||||
- cd ${CI_PROJECT_DIR}
|
||||
- wmake diffusivityModel
|
||||
- wmake testApp
|
||||
- cd testApp
|
||||
- ./Alltest2.py ch4_adiabatic.csv premixed
|
||||
artifacts:
|
||||
paths:
|
||||
- testApp/premixed/*/canteraTest.log
|
||||
when: always
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue