Merge branch 'master' of git.a-lec.org:a-lec/commissions/infrastructure/www

This commit is contained in:
Christian P. MOMON 2022-08-14 11:36:34 +02:00
commit 9ba5ac6b16
1 changed files with 7 additions and 1 deletions

View File

@ -20,14 +20,18 @@ stages: # List of stages for jobs, and their order of execution
synchro-et-tests:
stage: build
script:
- rsync -avzlh * /home/webmaster/site-a-lec.org/articles/
- |+
# Sync files
rsync -avzlh * /home/webmaster/site-a-lec.org/articles/
- |+
# Check how many changed
files=""
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | grep stl || find . -name "*.stl")
if [ -z "$CI_COMMIT_SHA" ]; then files=$(find . -name "*.stl"); fi
echo -e "Test de : \n $files"
- cd /home/webmaster/site-a-lec.org
- |+
# Test for errors
errors=0
for file in $files
do
@ -50,11 +54,13 @@ deploiement: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
script:
- |+
# Check how many files to be builded
files=""
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | grep stl || find . -name "*.stl")
if [ -z "$CI_COMMIT_SHA" ]; then files=$(find . -name "*.stl"); fi
- cd /home/webmaster/site-a-lec.org
- |+
# Build and check for errors
errors=0
for file in $files
do