From 80cb586470fef81379eec7b00778c4f6cf617112 Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:42:18 +0100 Subject: [PATCH 1/2] Check the supported PHP versions --- .github/workflows/codestyle.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 45dfc49e2f..f6dc3fa4a6 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -46,7 +46,7 @@ jobs: image: domjudge/gitlabci:24.04 strategy: matrix: - PHPVERSION: ["8.1", "8.2", "8.3", "8.4"] + PHPVERSION: ["8.2", "8.3", "8.4", "8.5"] steps: - uses: actions/checkout@v4 - name: Detect compatibility with supported PHP version diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index c966aaadf8..233b480b78 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -44,7 +44,7 @@ jobs: options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3 strategy: matrix: - PHPVERSION: [8.1, 8.4] + PHPVERSION: [8.2, 8.5] TEST: [Unit, E2E] steps: - uses: actions/checkout@v4 From 1c62f63e06d6e9ad8b4561d6a63111ccb94ff4db Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:42:59 +0100 Subject: [PATCH 2/2] Make CI faster by assumption that no features have been deprecated and readded --- .github/workflows/codestyle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index f6dc3fa4a6..c8c49e173e 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -46,7 +46,7 @@ jobs: image: domjudge/gitlabci:24.04 strategy: matrix: - PHPVERSION: ["8.2", "8.3", "8.4", "8.5"] + PHPVERSION: ["8.2", "8.5"] steps: - uses: actions/checkout@v4 - name: Detect compatibility with supported PHP version