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/11/22 17:43:16 UTC

[groovy] branch GROOVY_3_0_X updated (f9c3981 -> 23aedad)

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

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


    from f9c3981  Fix the failing build: add missing class deleted by accident
     new 3850e5b  Enable github-actions
     new 497e5a1  Use JDK 11(LTS) on github-actions
     new 14a205a  Add JDK 8(LTS) to github-actions
     new 006bb56  Fix the version JDK 8(LTS) of github-actions
     new 40cd808  Fix the failing build on Java 11.0.5
     new 23aedad  Tweak the step name of testing on github-actions

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/{gradle.yml.disabled => gradle.yml}     | 10 +++++-----
 src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)
 rename .github/workflows/{gradle.yml.disabled => gradle.yml} (90%)


[groovy] 05/06: Fix the failing build on Java 11.0.5

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 40cd808cd250478d90731394ed059302e938a0a4
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 01:09:40 2019 +0800

    Fix the failing build on Java 11.0.5
    
    (cherry picked from commit 002b8581aa3f8728b25a66690e7aac05f375ee0e)
---
 src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy b/src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy
index e708b73..717b461 100644
--- a/src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy
+++ b/src/spec/test/typing/TypeCheckingExtensionSpecTest.groovy
@@ -421,7 +421,7 @@ runner.run()
 // tag::robot_runtime_error_cs[]
 java.lang.NoSuchMethodError: java.lang.Object.move()Ltyping/Robot;
 // end::robot_runtime_error_cs[]
-'''))
+''')) || err.contains('java.lang.NoSuchMethodError: \'typing.Robot java.lang.Object.move()\'')
     }
 
     void testRobotExamplePassesWithCompileStatic() {


[groovy] 01/06: Enable github-actions

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3850e5b1ef94c7f71d3433ed87d0c8673792858c
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 00:25:13 2019 +0800

    Enable github-actions
    
    As travis CI always shows "Received" and does not run tests immediately, enable github actions on ubuntu for fast feedback
    
    (cherry picked from commit 8b65ad7589e13f23394fcdee9d31a3c2ebd984a5)
---
 .github/workflows/{gradle.yml.disabled => gradle.yml} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/gradle.yml.disabled b/.github/workflows/gradle.yml
similarity index 96%
rename from .github/workflows/gradle.yml.disabled
rename to .github/workflows/gradle.yml
index 7e88a6c..d60927c 100644
--- a/.github/workflows/gradle.yml.disabled
+++ b/.github/workflows/gradle.yml
@@ -21,7 +21,7 @@ jobs:
   test:
     strategy:
       matrix:
-        os: [windows-2019]
+        os: [ubuntu-18.04]
         java: ['12.0.2']
     runs-on: ${{ matrix.os }}
     steps:
@@ -36,7 +36,7 @@ jobs:
   testWithIndy:
     strategy:
       matrix:
-        os: [windows-2019]
+        os: [ubuntu-18.04]
         java: ['12.0.2']
     runs-on: ${{ matrix.os }}
     steps:


[groovy] 02/06: Use JDK 11(LTS) on github-actions

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 497e5a1768c54e592fb4feaf48347102621ce726
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 00:45:26 2019 +0800

    Use JDK 11(LTS) on github-actions
    
    (cherry picked from commit 41a69cb26b2616628d16574aa28b8c0b9afd7d8a)
---
 .github/workflows/gradle.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index d60927c..79ba00c 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -22,7 +22,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: ['12.0.2']
+        java: [11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1
@@ -37,7 +37,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: ['12.0.2']
+        java: [11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1


[groovy] 04/06: Fix the version JDK 8(LTS) of github-actions

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 006bb56745d03f7d3f19d81fc05587a90d10f24c
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 00:52:25 2019 +0800

    Fix the version JDK 8(LTS) of github-actions
    
    (cherry picked from commit d6b6ee86cde9a0e793df07e97f8a20d425341782)
---
 .github/workflows/gradle.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index 891c7d2..f05eeaf 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -22,7 +22,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: [1.8.0_232, 11.0.5]
+        java: [8.0.232, 11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1
@@ -37,7 +37,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: [1.8.0_232, 11.0.5]
+        java: [8.0.232, 11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1


[groovy] 06/06: Tweak the step name of testing on github-actions

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 23aedade55b1c234571e430ac66800b9b6feab21
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 01:38:24 2019 +0800

    Tweak the step name of testing on github-actions
    
    (cherry picked from commit 018ae887d27bc73e534e10461995a6b0154ac72c)
---
 .github/workflows/gradle.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index f05eeaf..05b89a7 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -45,6 +45,6 @@ jobs:
         uses: actions/setup-java@v1
         with:
           java-version: ${{ matrix.java }}
-      - name: Test Indy with Gradle
+      - name: Test with Gradle
         run: ./gradlew testWithIndy
         timeout-minutes: 60


[groovy] 03/06: Add JDK 8(LTS) to github-actions

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 14a205aed48b8add6771af29cf1f905e750f798c
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Nov 23 00:49:15 2019 +0800

    Add JDK 8(LTS) to github-actions
    
    (cherry picked from commit d3c29f9193296ea5efc34815e5c5991af8c5cb62)
---
 .github/workflows/gradle.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index 79ba00c..891c7d2 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -22,7 +22,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: [11.0.5]
+        java: [1.8.0_232, 11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1
@@ -37,7 +37,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-18.04]
-        java: [11.0.5]
+        java: [1.8.0_232, 11.0.5]
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v1