Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No need to run mysql5 tests anymore #24993

Merged
merged 1 commit into from
Jan 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 0 additions & 101 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -473,107 +473,6 @@ trigger:
- pull_request
- push

---
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
Expand Down