X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=devops-stages%2Fstage-test.sh;h=70b610b59724d6be297406e94f0fda1d37b4949b;hb=6227505bd392d7f5bc4158f8d1a4919379bfd29b;hp=51b3513987b57b2f22801bb37b8e529fdf4df62a;hpb=a60ec7310d582158700acf9f3fb1945cb05bacca;p=osm%2Fdevops.git diff --git a/devops-stages/stage-test.sh b/devops-stages/stage-test.sh index 51b35139..70b610b5 100755 --- a/devops-stages/stage-test.sh +++ b/devops-stages/stage-test.sh @@ -1,5 +1,6 @@ #!/bin/sh # Copyright 2021 Canonical Ltd. +# Copyright ETSI # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,6 +15,11 @@ # limitations under the License. set -eu + +if [ $(git diff --name-only origin/$GERRIT_BRANCH -- installers/charm/ |wc -l) -eq 0 ]; then + exit 0 +fi + CURRENT_DIR=`pwd` # Execute tests for charms @@ -24,4 +30,4 @@ for charm in $CHARM_NAMES; do OUTPUT=$(TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto) printf "$OUTPUT\n" cd $CURRENT_DIR -done \ No newline at end of file +done