This is an automated email from the ASF dual-hosted git repository.
valdar pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
The following commit(s) were added to refs/heads/main by this push:
new 5133b738f6 chore(CI): introduced jave 21 in CI java matrix
5133b738f6 is described below
commit 5133b738f6e3f1f3fae3fb4e8635ef297c6ce7e1
Author: Andrea Tarocchi <[email protected]>
AuthorDate: Tue Jun 4 17:49:50 2024 +0200
chore(CI): introduced jave 21 in CI java matrix
---
.github/workflows/ci-build.yml | 7 ++++++-
.github/workflows/daily-java-next.yml | 2 +-
.github/workflows/maven-it.yaml | 7 ++++++-
3 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml
index 23008526e6..c927185d09 100644
--- a/.github/workflows/ci-build.yml
+++ b/.github/workflows/ci-build.yml
@@ -37,9 +37,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- java: [ '17' ]
+ java: ['17']
+ experimental: [ false ]
+ include:
+ - java: '21'
+ experimental: true
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
diff --git a/.github/workflows/daily-java-next.yml
b/.github/workflows/daily-java-next.yml
index e4ece556b4..1e44a1438c 100644
--- a/.github/workflows/daily-java-next.yml
+++ b/.github/workflows/daily-java-next.yml
@@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: [ '18' ]
+ java: [ '21' ]
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
diff --git a/.github/workflows/maven-it.yaml b/.github/workflows/maven-it.yaml
index 421ced3eb8..d8e2287f32 100644
--- a/.github/workflows/maven-it.yaml
+++ b/.github/workflows/maven-it.yaml
@@ -37,9 +37,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- java: [ '17' ]
+ java: ['17']
+ experimental: [ false ]
+ include:
+ - java: '21'
+ experimental: true
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}