diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-01-07 08:44:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 08:44:31 +0100 |
commit | ae2ca5b002cd90558a953fcad6ca014c37ff7b07 (patch) | |
tree | d691c70861301693e6d404e8be504f4034ed7e75 | |
parent | 8fee2a977fd822bd9caf20f16e4ab60ac9e40a4b (diff) | |
parent | e334fa259405049c17714abbc53a7f6403405500 (diff) | |
download | nextcloud-server-ae2ca5b002cd90558a953fcad6ca014c37ff7b07.tar.gz nextcloud-server-ae2ca5b002cd90558a953fcad6ca014c37ff7b07.zip |
Merge pull request #24993 from nextcloud/ci/db_drop_mysql_5
No need to run mysql5 tests anymore
-rw-r--r-- | .drone.yml | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/.drone.yml b/.drone.yml index f8f96f47501..e4a439f7c8a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -475,107 +475,6 @@ trigger: --- kind: pipeline -name: mysql5.7-php7.4 - -steps: -- name: submodules - image: docker:git - commands: - - git submodule update --init -- name: mysql-php7.4 - image: nextcloudci/php7.4:latest - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql - -services: -- name: mysql - image: mysql:5.7 - environment: - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: oc_autotest - MYSQL_PASSWORD: owncloud - MYSQL_DATABASE: oc_autotest - tmpfs: - - /var/lib/mysql - -trigger: - branch: - - master - - stable* - event: - - push - ---- -kind: pipeline -name: mysql5.7-php7.3 - -steps: -- name: submodules - image: docker:git - commands: - - git submodule update --init -- name: mysql-php7.3 - image: nextcloudci/php7.3:php7.3-4 - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql - -services: -- name: mysql - image: mysql:5.7 - environment: - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: oc_autotest - MYSQL_PASSWORD: owncloud - MYSQL_DATABASE: oc_autotest - tmpfs: - - /var/lib/mysql - -trigger: - branch: - - master - - stable* - event: - - push - ---- -kind: pipeline -name: mysql5.6-php7.3 - -steps: -- name: submodules - image: docker:git - commands: - - git submodule update --init -- name: mysql5.6-php7.3 - image: nextcloudci/php7.3:latest - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql - -services: -- name: cache - image: redis -- name: mysql - image: mysql:5.6 - environment: - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: oc_autotest - MYSQL_PASSWORD: owncloud - MYSQL_DATABASE: oc_autotest - tmpfs: - - /var/lib/mysql -trigger: - branch: - - master - - stable* - event: - - pull_request - - push - ---- -kind: pipeline name: postgres9-php7.3 steps: |