diff options
author | Simon L <szaimen@e.mail.de> | 2022-11-14 11:51:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 11:51:45 +0100 |
commit | 8720abf5239ca377bb74171da83833ad9c7749c0 (patch) | |
tree | afeac35911ab9944867bdb3b640c04dba21148ba | |
parent | 75568b8911e687a67040083a220088f1910a19e5 (diff) | |
parent | 9aa34969131c0c71c435a8b70d0129574b2b1359 (diff) | |
download | nextcloud-server-8720abf5239ca377bb74171da83833ad9c7749c0.tar.gz nextcloud-server-8720abf5239ca377bb74171da83833ad9c7749c0.zip |
Merge pull request #35134 from nextcloud/backport/35093/stable24
[stable24] 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 |