diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dea1e2c8bbae88d9d7a6404b3b8adf8f77bde050..83b1aef832dc41a8807a5ae20be2e557611941b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,34 +1,18 @@ stages: - - build - - run_ideal - - run_real - - postprocess + - everything -cache: - paths: - - autosubmit/ - - pyenv/ - -stage_0: - stage: build - script: ./examples/01_real-from-ideal.sh 0 - tags: - - slurm.meteo.physik.lmu.de - -stage_1: - stage: run_ideal - script: ./examples/01_real-from-ideal.sh 1 - tags: - - slurm.meteo.physik.lmu.de - -stage_2: - stage: run_real - script: ./examples/01_real-from-ideal.sh 2 - tags: - - slurm.meteo.physik.lmu.de - -stage_3: - stage: postprocess - script: ./examples/01_real-from-ideal.sh 3 - tags: - - slurm.meteo.physik.lmu.de +real-from-ideal: + stage: everything + script: + # Build + - ./examples/01_real-from-ideal.sh 0 + # Run Ideal + - ./examples/01_real-from-ideal.sh 1 + # Run Real + - ./examples/01_real-from-ideal.sh 2 + # Post-process and clean + - ./examples/01_real-from-ideal.sh 3 + tags: + - slurm.meteo.physik.lmu.de + variables: + SRUN_OPTIONS: "--time 04:00:00 --mem 18G -n 4 -c 2"