Update .gitlab-ci.yml file
This commit is contained in:
parent
ca1b4c0889
commit
cfd35cafb3
|
@ -24,15 +24,7 @@ test-job: # This job runs in the test stage.
|
||||||
stage: test # It only starts when the job in the build stage completes successfully.
|
stage: test # It only starts when the job in the build stage completes successfully.
|
||||||
script:
|
script:
|
||||||
- |+
|
- |+
|
||||||
files=
|
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)
|
||||||
if [ ! -z "$CI_COMMIT_SHA" ]
|
|
||||||
then
|
|
||||||
files=$(find . -name "*.zone" -printf %P)
|
|
||||||
echo "Pipeline régulier"
|
|
||||||
else
|
|
||||||
files=$(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)
|
|
||||||
echo "Pipeline exceptionnel"
|
|
||||||
fi
|
|
||||||
if [ "$files" =~ .*"zone".* ]
|
if [ "$files" =~ .*"zone".* ]
|
||||||
then
|
then
|
||||||
echo "Test des zones $files."
|
echo "Test des zones $files."
|
||||||
|
|
Loading…
Reference in New Issue