WIP: test de la CI
This commit is contained in:
parent
e22d784e32
commit
2845cb81e8
|
@ -34,7 +34,7 @@ jobs:
|
|||
do
|
||||
echo "### Test de $file"
|
||||
stl log clean
|
||||
stl check -F $file | grep -e "Err" -e "erreur de" -e "Aucun fichier" && errors=$((errors+1)) # error if err is read in standard output
|
||||
stl check $file -F | grep -e "Err" -e "erreur de" -e "Aucun fichier" && errors=$((errors+1)) # error if err is read in standard output
|
||||
done
|
||||
[ $errors -gt 0 ] && false
|
||||
true
|
||||
|
@ -55,7 +55,7 @@ jobs:
|
|||
do
|
||||
echo "Construction de $file"
|
||||
stl log clean
|
||||
stl wip -F $file | grep -e "Err" -e "erreur de" -e "Aucun fichier" && errors=$((errors+1)) # error if err is read in standard output
|
||||
stl wip $file -F | grep -e "Err" -e "erreur de" -e "Aucun fichier" && errors=$((errors+1)) # error if err is read in standard output
|
||||
done
|
||||
[ $errors -gt 0 ] && false
|
||||
true
|
||||
|
|
Loading…
Reference in New Issue