From b7e9bdcf83e31eaf1c05c4fab2010e7e6b88ea3b Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Sun, 2 Apr 2023 19:07:30 +0200 Subject: [PATCH] Remove EOL software from drone Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- .drone.yml | 74 ------------------------------------------------------ 1 file changed, 74 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3507d306c10d9..470482fe0d08a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -269,44 +269,6 @@ trigger: - pull_request - push ---- -kind: pipeline -name: mariadb10.2-php8.0 - -steps: -- name: submodules - image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest - commands: - - git submodule update --init -- name: mariadb10.2-php8.0 - image: ghcr.io/nextcloud/continuous-integration-php8.0:latest - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb - -services: -- name: cache - image: ghcr.io/nextcloud/continuous-integration-redis:latest -- name: mariadb - image: ghcr.io/nextcloud/continuous-integration-mariadb-10.2:10.2 - environment: - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: oc_autotest - MYSQL_PASSWORD: owncloud - MYSQL_DATABASE: oc_autotest - command: - - --sql-mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION - tmpfs: - - /var/lib/mysql - -trigger: - branch: - - master - - stable* - event: - - pull_request - - push - --- kind: pipeline name: mariadb10.4-php8.0 @@ -422,42 +384,6 @@ trigger: - pull_request - push ---- -kind: pipeline -name: postgres10-php8.0 - -steps: -- name: submodules - image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest - commands: - - git submodule update --init -- name: postgres-php8.0 - image: ghcr.io/nextcloud/continuous-integration-php8.0:latest - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - sleep 10 # gives the database enough time to initialize - - POSTGRES=10 NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql - -services: -- name: cache - image: ghcr.io/nextcloud/continuous-integration-redis:latest -- name: postgres-10 - image: ghcr.io/nextcloud/continuous-integration-postgres-10:postgres-10 - environment: - POSTGRES_USER: oc_autotest - POSTGRES_DB: oc_autotest - POSTGRES_PASSWORD: owncloud - tmpfs: - - /var/lib/postgresql/data - -trigger: - branch: - - master - - stable* - event: - - pull_request - - push - --- kind: pipeline name: postgres11-php8.0