From 1441aac9307e9da45824ca7519c7b3424a374496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Tint=C3=B3?= <oriol.tinto@lmu.de> Date: Tue, 16 May 2023 14:05:08 +0200 Subject: [PATCH] Adding .gitlab-ci.yml --- .gitlab-ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4f4d077 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,29 @@ +stages: + - build + - run_ideal + - run_real + - postprocess + +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 -- GitLab