diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55a2fb6..ccf0479 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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