From d5b337b656c1318500b00bf69a56d61fd4145859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Tint=C3=B3?= <oriol.tinto@lmu.de> Date: Wed, 17 May 2023 15:31:17 +0200 Subject: [PATCH] Modifying .gitlab-ci.yml to use a single stage. Adding SRUN_OPTIONS with -n 4 -c 2. --- .gitlab-ci.yml | 48 ++++++++++++++++-------------------------------- 1 file changed, 16 insertions(+), 32 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dea1e2c..83b1aef 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" -- GitLab