From 33fdb10912a47679971be724d9fc7d8a10477a64 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Fri, 12 Aug 2022 15:32:34 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a69d999..bb8d8c4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,9 +27,8 @@ synchro-et-tests: for file in $files do echo "Test de $file" - std=$(stl check $file) - echo $std - echo $std | grep Err && false# return false if error is read in standard output + stl check $file + stl check $file | grep Err && false# return false if error is read in standard output done - echo "Fin des tests." @@ -43,9 +42,8 @@ deploiement: # This job runs in the deploy stage. for file in $files do echo "Construction de $file" - std=$(stl wip $file) - echo $std - echo $std | grep Err && false + stl wip $file + stl wip $file | grep Err && false done - stl sync - echo "Déploiement terminé." \ No newline at end of file