This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch not-fail-fast in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git
commit b22c8806dd5a2530069d3c08c9908e1a09fe13b4 Author: Slawomir Jaranowski <s.jaranow...@gmail.com> AuthorDate: Fri Feb 24 20:32:01 2023 +0100 Don't fail fast jobs in build matrix If one build for specific jdk fail we want to see result from others --- .github/workflows/maven.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e5c93cb7..5e8c482e 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -28,3 +28,4 @@ jobs: with: jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]' matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]' + verify-fail-fast: false