From a4f07041150adbcfcc735f438a5cbd70c115e9cf Mon Sep 17 00:00:00 2001 From: GRAUX Pierre <pierre.graux@univ-lille.fr> Date: Mon, 27 Sep 2021 14:39:24 +0200 Subject: [PATCH] Exit 0 --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6200229..62facc2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,10 @@ image: ubuntu:18.04 stages: - test +variables: + HELLO_WORLD: "Hello from pipeline" + simple-test: stage: test script: - - exit 1 + - echo $HELLO_WORLD && exit 0 -- GitLab