diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-03 20:11:29 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-03 20:15:52 +0200 |
commit | f4ab4431ab38ed2fa65a9705d7120db406984317 (patch) | |
tree | e6d4e8b4766cf5ca0ad0150d471bd24a18a548f9 /.drone.yml | |
parent | ecd0d39c304597c77639600a40db25e86fa5a126 (diff) | |
download | nextcloud-server-f4ab4431ab38ed2fa65a9705d7120db406984317.tar.gz nextcloud-server-f4ab4431ab38ed2fa65a9705d7120db406984317.zip |
Do not run every possible DB combo on PRs
Only run them once merged.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 29 |
1 files changed, 9 insertions, 20 deletions
diff --git a/.drone.yml b/.drone.yml index c550839b3e2..23632c07c46 100644 --- a/.drone.yml +++ b/.drone.yml @@ -427,7 +427,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -497,7 +496,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -532,20 +530,19 @@ trigger: - master - stable* event: - - pull_request - push --- kind: pipeline -name: mariadb10.4-php7.1 +name: mariadb10.4-php7.3 steps: - name: submodules image: docker:git commands: - git submodule update --init -- name: mariadb10.4-php7.1 - image: nextcloudci/php7.1:php7.1-16 +- name: mariadb10.4-php7.3 + image: nextcloudci/php7.3:php7.3-1 commands: - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb @@ -572,15 +569,15 @@ trigger: --- kind: pipeline -name: mysql8.0-php7.1 +name: mysql8.0-php7.2 steps: - name: submodules image: docker:git commands: - git submodule update --init -- name: mysql-php7.1 - image: nextcloudci/php7.1:php7.1-16 +- name: mysql-php7.2 + image: nextcloudci/php7.2:php7.2-12 commands: - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql @@ -638,7 +635,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -671,7 +667,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -704,7 +699,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -773,20 +767,19 @@ trigger: - master - stable* event: - - pull_request - push --- kind: pipeline -name: postgres9-php7.1 +name: postgres9-php7.3 steps: - name: submodules image: docker:git commands: - git submodule update --init -- name: postgres-php7.1 - image: nextcloudci/php7.1:php7.1-16 +- name: postgres-php7.3 + image: nextcloudci/php7.3:php7.3-1 commands: - sleep 10 # gives the database enough time to initialize - POSTGRES=9 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql @@ -843,7 +836,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -914,7 +906,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -950,7 +941,6 @@ trigger: - master - stable* event: - - pull_request - push --- @@ -986,7 +976,6 @@ trigger: - master - stable* event: - - pull_request - push --- |