You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2022/07/01 09:48:46 UTC

[rocketmq-clients] branch java updated (bdf11ae -> 7a49d32)

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

aaronai pushed a change to branch java
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git


 discard bdf11ae  Java: use matrix to trigger CI
     new 7a49d32  Java: use matrix to trigger CI

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   (bdf11ae)
            \
             N -- N -- N   refs/heads/java (7a49d32)

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/java_build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[rocketmq-clients] 01/01: Java: use matrix to trigger CI

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

aaronai pushed a commit to branch java
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git

commit 7a49d3294936add68660deeef640cfa84130e24c
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Fri Jul 1 17:37:07 2022 +0800

    Java: use matrix to trigger CI
---
 .github/workflows/java_build.yml | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/java_build.yml b/.github/workflows/java_build.yml
index 4b8b2be..8bf1d0e 100644
--- a/.github/workflows/java_build.yml
+++ b/.github/workflows/java_build.yml
@@ -1,16 +1,20 @@
 name: Java Build
 on: [push, pull_request]
 jobs:
-  java_ubuntu_18_04:
-    name: Ubuntu 18.04
-    runs-on: ubuntu-18.04
+  java_build:
+    name: "check (${{ matrix.os }} JDK-${{ matrix.jdk }})"
+    runs-on: ${{ matrix.os }}
+    strategy:
+      matrix:
+        os: [ubuntu-18.04, windows-2019]
+        jdk: [11, 17]
     steps:
     - name: Checkout
       uses: actions/checkout@v2
-    - name: Set up JDK 11
+    - name: Set up JDK ${{ matrix.jdk }}
       uses: actions/setup-java@v2
       with:
-        java-version: '11'
+        java-version: ${{ matrix.jdk }}
         distribution: 'adopt'
         cache: maven
     - name: Build with Maven