From 9375d613b9fb74acb6d04e2d80b43dcfdf60bc88 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:22:12 +0200 Subject: [PATCH] Trying to pass artifacts from stage to stage in .gitlab-ci.yml --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4f4d077..a45206b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,18 +9,31 @@ stage_0: script: ./examples/01_real-from-ideal.sh 0 tags: - slurm.meteo.physik.lmu.de + artifacts: + paths: + - autosubmit + - venv stage_1: stage: run_ideal script: ./examples/01_real-from-ideal.sh 1 tags: - slurm.meteo.physik.lmu.de + artifacts: + paths: + - autosubmit + - venv + stage_2: stage: run_real script: ./examples/01_real-from-ideal.sh 2 tags: - slurm.meteo.physik.lmu.de + artifacts: + paths: + - autosubmit + - venv stage_3: stage: postprocess -- GitLab