Changement de moteur, GSL => STL (suite)

This commit is contained in:
Adrien Bourmault 2022-08-12 15:14:42 +00:00
parent 4398c08106
commit 1a22e77050
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ synchro-et-tests:
- rsync -avzlh * /home/webmaster/site-chalec.org/articles/
- files=(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)
- cd /home/webmaster/site-chalec.org/articles
- for file in $files; do stl check $file | grep Err && false; done # return false if error is read in standard output
- for file in $files; do stl check $file | tee /dev/stderr | grep Err && false; done # return false if error is read in standard output
deploiement: # This job runs in the deploy stage.
@ -35,7 +35,7 @@ deploiement: # This job runs in the deploy stage.
for file in $files
do
echo "Construction de $file"
stl wip $file | grep Err && false
stl wip $file | tee /dev/stderr | grep Err && false
done
- stl sync
- echo "Déploiement terminé."