Update .gitlab-ci.yml file
This commit is contained in:
parent
e0e625490e
commit
b89c557c4c
|
@ -30,6 +30,7 @@ synchro-et-tests:
|
|||
for file in $files
|
||||
do
|
||||
echo "Test de $file"
|
||||
stl log clean
|
||||
stl check $file | grep Err && errors=$((errors+1)) # error if err is read in standard output
|
||||
done
|
||||
[ $errors -gt 0 ] && false
|
||||
|
@ -48,6 +49,7 @@ deploiement: # This job runs in the deploy stage.
|
|||
for file in $files
|
||||
do
|
||||
echo "Construction de $file"
|
||||
stl log clean
|
||||
stl wip $file | grep Err && errors=$((errors+1)) # error if err is read in standard output
|
||||
done
|
||||
[ $errors -gt 0 ] && false
|
||||
|
|
Loading…
Reference in New Issue