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 2022/06/24 20:00:51 UTC

[groovy] branch danielsun/jdk19 updated (9d50d1f9f3 -> 07e8695f12)

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

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


 discard 9d50d1f9f3 Try jdk19
     new 07e8695f12 Try jdk19

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9d50d1f9f3)
            \
             N -- N -- N   refs/heads/danielsun/jdk19 (07e8695f12)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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/groovy-build-test-ea.yml | 6 ++++++
 .travis.yml                                | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)


[groovy] 01/01: Try jdk19

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

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

commit 07e8695f12f7428981f2761a304b2eef6ffa5267
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Jun 25 04:00:28 2022 +0800

    Try jdk19
---
 .github/workflows/groovy-build-test-ea.yml | 44 ++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/.github/workflows/groovy-build-test-ea.yml b/.github/workflows/groovy-build-test-ea.yml
new file mode 100644
index 0000000000..859405d0f9
--- /dev/null
+++ b/.github/workflows/groovy-build-test-ea.yml
@@ -0,0 +1,44 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: Build and test ea
+
+on: [push, pull_request]
+
+jobs:
+  test:
+    strategy:
+      fail-fast: false
+      matrix:
+        os: [ubuntu-18.04]
+        java: [17]
+    runs-on: ${{ matrix.os }}
+    steps:
+      - name: Download JDK
+        run: wget -P /tmp/ https://download.java.net/java/early_access/jdk19/28/GPL/openjdk-19-ea+28_linux-x64_bin.tar.gz
+      - name: Set up JDK
+        run: mkdir -p /home/runner/openjdk && tar -xvf /tmp/openjdk-19-ea+28_linux-x64_bin.tar.gz -C /home/runner/openjdk && chmod -R 755 /home/runner/openjdk
+      - uses: actions/checkout@v2
+      - name: Set up JDK
+        uses: actions/setup-java@v2
+        with:
+          distribution: 'zulu'
+          java-version: ${{ matrix.java }}
+          check-latest: true
+      - name: Test with Gradle
+        run: ./gradlew test -Ptarget.java.home=/home/runner/openjdk/jdk-19
+        timeout-minutes: 60
+        env:
+          GRADLE_SCANS_ACCEPT: yes