Skip to content
Snippets Groups Projects
Commit 9375d613 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Trying to pass artifacts from stage to stage in .gitlab-ci.yml

parent 6593f7c4
No related branches found
No related tags found
No related merge requests found
Pipeline #18695 canceled
...@@ -9,18 +9,31 @@ stage_0: ...@@ -9,18 +9,31 @@ stage_0:
script: ./examples/01_real-from-ideal.sh 0 script: ./examples/01_real-from-ideal.sh 0
tags: tags:
- slurm.meteo.physik.lmu.de - slurm.meteo.physik.lmu.de
artifacts:
paths:
- autosubmit
- venv
stage_1: stage_1:
stage: run_ideal stage: run_ideal
script: ./examples/01_real-from-ideal.sh 1 script: ./examples/01_real-from-ideal.sh 1
tags: tags:
- slurm.meteo.physik.lmu.de - slurm.meteo.physik.lmu.de
artifacts:
paths:
- autosubmit
- venv
stage_2: stage_2:
stage: run_real stage: run_real
script: ./examples/01_real-from-ideal.sh 2 script: ./examples/01_real-from-ideal.sh 2
tags: tags:
- slurm.meteo.physik.lmu.de - slurm.meteo.physik.lmu.de
artifacts:
paths:
- autosubmit
- venv
stage_3: stage_3:
stage: postprocess stage: postprocess
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment