Update .gitlab-ci.yml file

This commit is contained in:
Adrien Bourmault 2022-08-12 16:05:28 +00:00
parent 29bf71bed5
commit 5403445a91
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ synchro-et-tests:
echo "Test de $file"
stl check $file | grep Err && errors=$((errors+1)) # error if err is read in standard output
done
[ $err -gt 0 ] && false
[ $errors -gt 0 ] && false
- echo "Fin des tests."
@ -50,6 +50,6 @@ deploiement: # This job runs in the deploy stage.
echo "Construction de $file"
stl wip $file | grep Err && errors=$((errors+1)) # error if err is read in standard output
done
[ $err -gt 0 ] && false
[ $errors -gt 0 ] && false
- stl sync
- echo "Déploiement terminé."