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