This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne.git
commit e3e7701e0f3dfaa91e6e7cd71e5ee072e7f3611f Author: Andrus Adamchik <[email protected]> AuthorDate: Thu May 7 13:31:40 2026 -0400 CAY-2935 Upgrade Cayenne 5.0 to Java 21 temporarily removing Java 25 and 26 from CI/CD matrix. We need to get rid of mockito for this to work --- .github/workflows/verify-deploy-on-push.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/verify-deploy-on-push.yml b/.github/workflows/verify-deploy-on-push.yml index 640afc583..f66f0a1d2 100644 --- a/.github/workflows/verify-deploy-on-push.yml +++ b/.github/workflows/verify-deploy-on-push.yml @@ -24,16 +24,12 @@ jobs: verify: runs-on: ubuntu-latest name: JDK ${{ matrix.jdk }}, DB ${{ matrix.db-profile }} - continue-on-error: ${{ matrix.jdk == '26' }} if: github.repository == 'apache/cayenne' strategy: matrix: - jdk: [21, 25] + jdk: [21] db-profile: [hsql, h2, derby, mysql-tc, postgres-tc, sqlserver-tc] - include: - - jdk: 26 - db-profile: postgres-tc fail-fast: false # finish all jobs anyway env:
