This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 9ff3f42ebd2 (chores) ci: prevent stopping the whole pipeline for
failures on Java 21
9ff3f42ebd2 is described below
commit 9ff3f42ebd26da25ab1139b2a1099495e838464f
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon Apr 15 16:15:31 2024 +0200
(chores) ci: prevent stopping the whole pipeline for failures on Java 21
---
.github/workflows/pr-build-main.yml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/pr-build-main.yml
b/.github/workflows/pr-build-main.yml
index d42372ed30e..4427e207441 100644
--- a/.github/workflows/pr-build-main.yml
+++ b/.github/workflows/pr-build-main.yml
@@ -36,9 +36,15 @@ jobs:
permissions:
issues: write
runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- java: [ '17', '21' ]
+ java: ['17']
+ experimental: [ false ]
+ include:
+ - java: '21'
+ experimental: true
+
steps:
- uses: actions/checkout@v4
with: