diff options
author | Simon L <szaimen@e.mail.de> | 2022-11-14 09:45:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 09:45:55 +0100 |
commit | 4bf1f4e484799ae33724f40ef7bd0a79dce20905 (patch) | |
tree | 286b1936bf7c6271862b1571c8353029625676b5 | |
parent | 98543b160c49153e5e5391fa9f70e5266e6400c7 (diff) | |
parent | 9dd0d0ba575f034f26eac0086567a72e81fc8bdd (diff) | |
download | nextcloud-server-4bf1f4e484799ae33724f40ef7bd0a79dce20905.tar.gz nextcloud-server-4bf1f4e484799ae33724f40ef7bd0a79dce20905.zip |
Merge pull request #35093 from nextcloud/nickvergessen-patch-1
Run integration tests on 3rdparty bump
-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 |