diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-11-11 07:54:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 07:54:26 +0100 |
commit | 9dd0d0ba575f034f26eac0086567a72e81fc8bdd (patch) | |
tree | 1b7bbc0b4e2ab4221c0f0310baaf445d23fe95ce | |
parent | 96855d73a23dd702653674031ee4e1e78a7f7c66 (diff) | |
download | nextcloud-server-9dd0d0ba575f034f26eac0086567a72e81fc8bdd.tar.gz nextcloud-server-9dd0d0ba575f034f26eac0086567a72e81fc8bdd.zip |
Run integration tests on 3rdparty bump
Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
-rwxr-xr-x | tests/drone-run-integration-tests.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/drone-run-integration-tests.sh b/tests/drone-run-integration-tests.sh index af3c7a895c8..a341f363b86 100755 --- a/tests/drone-run-integration-tests.sh +++ b/tests/drone-run-integration-tests.sh @@ -20,4 +20,6 @@ echo "=========================" [[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "^build/integration/") -gt 0 ]] && echo "Integration test files are modified" && exit 0 +[[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "3rdparty") -gt 0 ]] && echo "3rdparty is modified" && exit 0 + exit 1 |