Update .gitlab-ci.yml file
This commit is contained in:
parent
5c3c851237
commit
33fdb10912
|
@ -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é."
|
Loading…
Reference in New Issue