Browse Source

Merge pull request #31011 from nextcloud/dronupdt

Remove MariaDB 10.1 and PGsql 9.6 (both EOL) from drone
tags/v24.0.0beta1
Joas Schilling 2 years ago
parent
commit
721f03fd27
No account linked to committer's email address
1 changed files with 17 additions and 17 deletions
  1. 17
    17
      .drone.yml

+ 17
- 17
.drone.yml View File

commands: commands:
- git submodule update --init - git submodule update --init
- name: checkers - name: checkers
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- ./autotest-checkers.sh - ./autotest-checkers.sh
secrets: [ github_token ] secrets: [ github_token ]
commands: commands:
- git submodule update --init - git submodule update --init
- name: nodb-php7.4 - name: nodb-php7.4
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
commands: commands:
- git submodule update --init - git submodule update --init
- name: sqlite-php7.4 - name: sqlite-php7.4
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite


--- ---
kind: pipeline kind: pipeline
name: mariadb10.1-php7.4
name: mariadb10.2-php7.4


steps: steps:
- name: submodules - name: submodules
image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest
commands: commands:
- git submodule update --init - git submodule update --init
- name: mariadb10.1-php7.4
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
- name: mariadb10.2-php7.4
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb
- name: cache - name: cache
image: ghcr.io/nextcloud/continuous-integration-redis:latest image: ghcr.io/nextcloud/continuous-integration-redis:latest
- name: mariadb - name: mariadb
image: ghcr.io/nextcloud/continuous-integration-mariadb-10.1:10.1
image: ghcr.io/nextcloud/continuous-integration-mariadb-10.2:10.2
environment: environment:
MYSQL_ROOT_PASSWORD: owncloud MYSQL_ROOT_PASSWORD: owncloud
MYSQL_USER: oc_autotest MYSQL_USER: oc_autotest
commands: commands:
- git submodule update --init - git submodule update --init
- name: mysql-php7.4 - name: mysql-php7.4
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql


--- ---
kind: pipeline kind: pipeline
name: postgres9.6-php7.4
name: postgres10-php7.4


steps: steps:
- name: submodules - name: submodules
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- sleep 10 # gives the database enough time to initialize - sleep 10 # gives the database enough time to initialize
- POSTGRES=9 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
- POSTGRES=10 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql


services: services:
- name: cache - name: cache
image: ghcr.io/nextcloud/continuous-integration-redis:latest image: ghcr.io/nextcloud/continuous-integration-redis:latest
- name: postgres-9
image: ghcr.io/nextcloud/continuous-integration-postgres-9:postgres-9.6
- name: postgres-10
image: ghcr.io/nextcloud/continuous-integration-postgres-10:postgres-10
environment: environment:
POSTGRES_USER: oc_autotest POSTGRES_USER: oc_autotest
POSTGRES_DB: oc_autotest_dummy POSTGRES_DB: oc_autotest_dummy
commands: commands:
- git submodule update --init - git submodule update --init
- name: postgres-php7.4 - name: postgres-php7.4
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
commands: commands:
- bash tests/drone-run-php-tests.sh || exit 0 - bash tests/drone-run-php-tests.sh || exit 0
- sleep 10 # gives the database enough time to initialize - sleep 10 # gives the database enough time to initialize
commands: commands:
- git submodule update --init - git submodule update --init
- name: nodb-codecov - name: nodb-codecov
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
environment: environment:
CODECOV_TOKEN: CODECOV_TOKEN:
from_secret: CODECOV_TOKEN from_secret: CODECOV_TOKEN
commands: commands:
- git submodule update --init - git submodule update --init
- name: db-codecov - name: db-codecov
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
environment: environment:
CODECOV_TOKEN: CODECOV_TOKEN:
from_secret: CODECOV_TOKEN from_secret: CODECOV_TOKEN
commands: commands:
- git submodule update --init - git submodule update --init
- name: object-store - name: object-store
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
environment: environment:
OBJECT_STORE: s3 OBJECT_STORE: s3
CODECOV_TOKEN: CODECOV_TOKEN:
commands: commands:
- git submodule update --init - git submodule update --init
- name: object-store - name: object-store
image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3
image: ghcr.io/nextcloud/continuous-integration-integration-php7.4:latest
environment: environment:
OBJECT_STORE: azure OBJECT_STORE: azure
CODECOV_TOKEN: CODECOV_TOKEN:

Loading…
Cancel
Save