From 54c933769f0fe357ff45300d4539ac054c8b2770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Mon, 6 Dec 2021 10:47:12 +0100 Subject: [PATCH] Drop 7.3 from some CI steps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- .drone.yml | 24 +++++++----------------- .github/workflows/lint.yml | 2 +- .github/workflows/oci.yml | 2 +- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4825a6b1a7f..8772c9c8f31 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ steps: commands: - git submodule update --init - name: checkers - image: ghcr.io/nextcloud/continuous-integration-php7.3:php7.3-6 + image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3 commands: - ./autotest-checkers.sh secrets: [ github_token ] @@ -223,11 +223,6 @@ steps: image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest commands: - git submodule update --init -- name: nodb-php7.3 - image: ghcr.io/nextcloud/continuous-integration-php7.3:php7.3-6 - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite - name: nodb-php7.4 image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3 commands: @@ -260,11 +255,6 @@ steps: image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest commands: - git submodule update --init -- name: sqlite-php7.3 - image: ghcr.io/nextcloud/continuous-integration-php7.3:php7.3-6 - commands: - - bash tests/drone-run-php-tests.sh || exit 0 - - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite - name: sqlite-php7.4 image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3 commands: @@ -290,15 +280,15 @@ trigger: --- kind: pipeline -name: mariadb10.1-php7.3 +name: mariadb10.1-php7.4 steps: - name: submodules image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest commands: - git submodule update --init -- name: mariadb10.1-php7.3 - image: ghcr.io/nextcloud/continuous-integration-php7.3:php7.3-6 +- name: mariadb10.1-php7.4 + image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3 commands: - bash tests/drone-run-php-tests.sh || exit 0 - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mariadb @@ -435,15 +425,15 @@ trigger: --- kind: pipeline -name: postgres9.6-php7.3 +name: postgres9.6-php7.4 steps: - name: submodules image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest commands: - git submodule update --init -- name: postgres-php7.3 - image: ghcr.io/nextcloud/continuous-integration-php7.3:php7.3-6 +- name: postgres-php7.4 + image: ghcr.io/nextcloud/continuous-integration-php7.4:php7.4-3 commands: - bash tests/drone-run-php-tests.sh || exit 0 - sleep 10 # gives the database enough time to initialize diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index df24664ab8f..eb117a2ab9a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.3', '7.4', '8.0', '8.1'] + php-versions: ['7.4', '8.0', '8.1'] name: php${{ matrix.php-versions }} lint steps: - name: Checkout diff --git a/.github/workflows/oci.yml b/.github/workflows/oci.yml index 4fcfc7ff04e..8d09578cf4e 100644 --- a/.github/workflows/oci.yml +++ b/.github/workflows/oci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ '7.3', '7.4', '8.0', '8.1'] + php-versions: [ '7.4', '8.0', '8.1'] databases: [ 'oci' ] name: php${{ matrix.php-versions }}-${{ matrix.databases }}