This is an automated email from the ASF dual-hosted git repository.
ntimofeev pushed a commit to branch STABLE-4.2
in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/STABLE-4.2 by this push:
new 85ea107a0 CAY-2857 Java 22 support
85ea107a0 is described below
commit 85ea107a0effa41ed334e010abfc154438b6a9c9
Author: Nikita Timofeev <[email protected]>
AuthorDate: Wed Jun 12 13:47:30 2024 +0400
CAY-2857 Java 22 support
---
.github/workflows/verify-deploy-on-push-4.2.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/verify-deploy-on-push-4.2.yml
b/.github/workflows/verify-deploy-on-push-4.2.yml
index 95e95b7e2..738d5a936 100644
--- a/.github/workflows/verify-deploy-on-push-4.2.yml
+++ b/.github/workflows/verify-deploy-on-push-4.2.yml
@@ -24,12 +24,18 @@ jobs:
verify:
runs-on: ubuntu-latest
name: JDK ${{ matrix.jdk }}, DB ${{ matrix.db-profile }}
+ continue-on-error: ${{ matrix.jdk == '22' }}
if: github.repository == 'apache/cayenne'
strategy:
matrix:
jdk: [8, 11, 17]
db-profile: [hsql, h2, derby, mysql-tc, postgres-tc, sqlserver-tc]
+ include:
+ - jdk: 21
+ db-profile: postgres-tc
+ - jdk: 22
+ db-profile: postgres-tc
fail-fast: false # finish all jobs anyway
env: