Update .gitlab-ci.yml file

This commit is contained in:
Adrien Bourmault 2022-08-14 11:01:39 +00:00
parent 8ca7fb93cc
commit 07f06cbc9c
1 changed files with 14 additions and 6 deletions

View File

@ -21,15 +21,19 @@ synchro-et-tests:
stage: build stage: build
script: script:
- |+ - |+
# Sync files # Sync files with server
rsync -avzlh * /home/webmaster/site-a-lec.org/articles/ rsync -avzlh * /home/webmaster/site-a-lec.org/articles/
- |+ - |+
# Check how many changed # Check how many changed
echo "Fichiers commités : $(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)" echo "Fichiers commités : $(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)"
files="" 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
if [ -z "$CI_COMMIT_SHA" ]; then files=$(find . -name "*.stl"); fi files=$(find . -name "*.stl" -printf %P)
else
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | grep stl || find . -name "*.stl" -printf %P)
fi
echo -e "Test de : \n $files" echo -e "Test de : \n $files"
- cd /home/webmaster/site-a-lec.org - cd /home/webmaster/site-a-lec.org
- |+ - |+
# Test for errors # Test for errors
@ -55,11 +59,15 @@ deploiement: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
script: script:
- |+ - |+
# Check how many files to be builded # Check how many changed
echo "Fichiers commités : $(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)" echo "Fichiers commités : $(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)"
files="" 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
if [ -z "$CI_COMMIT_SHA" ]; then files=$(find . -name "*.stl"); fi files=$(find . -name "*.stl" -printf %P)
else
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | grep stl || find . -name "*.stl" -printf %P)
fi
echo -e "Test de : \n $files"
- cd /home/webmaster/site-a-lec.org - cd /home/webmaster/site-a-lec.org
- |+ - |+
# Build and check for errors # Build and check for errors