separte gitlab ci jobs for test sets

This commit is contained in:
Yeongdo Park 2018-12-21 08:21:00 -05:00
parent 7bce61e8a3
commit 4f327884ce

View file

@ -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