You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2019/12/11 02:17:08 UTC

[groovy] branch master updated: Avoid building cancelled unexpectedly

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 34e2e92  Avoid building cancelled unexpectedly
34e2e92 is described below

commit 34e2e9250ee61cd7e04a5463699fb5fd73a35cc4
Author: Daniel Sun <su...@apache.org>
AuthorDate: Wed Dec 11 10:14:55 2019 +0800

    Avoid building cancelled unexpectedly
---
 .github/workflows/gradle.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index 7b39d2e..58ea012 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -20,6 +20,7 @@ on: [push, pull_request]
 jobs:
   test:
     strategy:
+      fail-fast: false
       matrix:
         os: [ubuntu-18.04]
         java: [8.0.232, 11.0.5]
@@ -37,6 +38,7 @@ jobs:
           GRADLE_SCANS_ACCEPT: yes
   testWithIndy:
     strategy:
+      fail-fast: false
       matrix:
         os: [ubuntu-18.04]
         java: [8.0.232, 11.0.5]