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/06/18 03:53:33 UTC

[rocketmq-clients] branch master updated (754d4ac -> 5adec9f)

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

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


 discard 754d4ac  Fix typo
     new 5adec9f  Fix typo

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   (754d4ac)
            \
             N -- N -- N   refs/heads/master (5adec9f)

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/{cpp_ci.yml => cpp_build.yml}       | 2 +-
 .github/workflows/{csharp_ci.yml => csharp_build.yml} | 2 +-
 .github/workflows/{java_ci.yml => java_build.yml}     | 2 +-
 README.md                                             | 3 +++
 4 files changed, 6 insertions(+), 3 deletions(-)
 rename .github/workflows/{cpp_ci.yml => cpp_build.yml} (95%)
 rename .github/workflows/{csharp_ci.yml => csharp_build.yml} (95%)
 rename .github/workflows/{java_ci.yml => java_build.yml} (94%)


[rocketmq-clients] 01/01: Fix typo

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

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

commit 5adec9f471b8f4a7630da068c7043f78b2da0495
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Sat Jun 18 11:37:07 2022 +0800

    Fix typo
---
 .github/workflows/cpp_build.yml    | 19 ++++++++++++++
 .github/workflows/csharp_build.yml | 21 +++++++++++++++
 .github/workflows/java_build.yml   | 19 ++++++++++++++
 .github/workflows/main.yml         | 52 --------------------------------------
 README.md                          |  3 +++
 5 files changed, 62 insertions(+), 52 deletions(-)

diff --git a/.github/workflows/cpp_build.yml b/.github/workflows/cpp_build.yml
new file mode 100644
index 0000000..9f108dc
--- /dev/null
+++ b/.github/workflows/cpp_build.yml
@@ -0,0 +1,19 @@
+name: CPP Build Action
+on: [push, pull_request]
+jobs:
+  cpp_build:
+    name: CPP Build
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - name: Setup Bazel
+        run: |
+          sudo apt-get -qq install npm
+          sudo npm install -g @bazel/bazelisk
+      - name: Use Bazel
+        if: matrix.os != 'windows'
+        working-directory: ./cpp
+        run: bazel -h
+      - name: Compile All Targets
+        working-directory: ./cpp
+        run: bazel build //...
diff --git a/.github/workflows/csharp_build.yml b/.github/workflows/csharp_build.yml
new file mode 100644
index 0000000..e81a185
--- /dev/null
+++ b/.github/workflows/csharp_build.yml
@@ -0,0 +1,21 @@
+name: C# Build Action
+on: [push, pull_request]
+jobs:
+  c_sharp_build:
+    name: C# Build
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout 
+        uses: actions/checkout@v2
+      - name: Setup dotnet
+        uses: actions/setup-dotnet@v1
+        with:
+          dotnet-version: | 
+            5.0.x
+            6.0.x
+      - name: Build artifacts
+        working-directory: ./csharp
+        run: |
+          dotnet --version
+          dotnet build
+
diff --git a/.github/workflows/java_build.yml b/.github/workflows/java_build.yml
new file mode 100644
index 0000000..0659a03
--- /dev/null
+++ b/.github/workflows/java_build.yml
@@ -0,0 +1,19 @@
+name: Java Build Action
+on: [push, pull_request]
+jobs:
+  java_build:
+    name: Java Build
+    runs-on: ubuntu-latest
+    steps:
+    - name: Checkout
+      uses: actions/checkout@v2
+    - name: Set up JDK 11
+      uses: actions/setup-java@v2
+      with:
+        java-version: '11'
+        distribution: 'adopt'
+        cache: maven
+    - name: Build with Maven
+      working-directory: ./java
+      run: mvn -B package --file pom.xml
+
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 7fb18dc..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-name: CI
-on: [push, pull_request]
-jobs:
-  cpp_build:
-    name: CPP build
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v2
-      - name: Setup Bazel
-        run: |
-          sudo apt-get -qq install npm
-          sudo npm install -g @bazel/bazelisk
-      - name: Use Bazel
-        if: matrix.os != 'windows'
-        working-directory: ./cpp
-        run: bazel -h
-      - name: Compile All Targets
-        working-directory: ./cpp
-        run: bazel build //...
-  c_sharp_build:
-    name: C# build
-    runs-on: ubuntu-latest
-    steps:
-      - name: Checkout 
-        uses: actions/checkout@v2
-      - name: Setup dotnet
-        uses: actions/setup-dotnet@v1
-        with:
-          dotnet-version: | 
-            5.0.x
-            6.0.x
-      - name: Build artifacts
-        working-directory: ./csharp
-        run: |
-          dotnet --version
-          dotnet build
-  java_build:
-    name: Java build
-    runs-on: ubuntu-latest
-    steps:
-    - name: Checkout
-      uses: actions/checkout@v2
-    - name: Set up JDK 11
-      uses: actions/setup-java@v2
-      with:
-        java-version: '11'
-        distribution: 'adopt'
-        cache: maven
-    - name: Build with Maven
-      working-directory: ./java
-      run: mvn -B package --file pom.xml
-
diff --git a/README.md b/README.md
index 6b8c664..2713946 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,8 @@
 # RocketMQ Clients - Collection of Polyglot Clients for Apache RocketMQ
 
+[![CPP](https://github.com/apache/rocketmq-clients/actions/workflows/cpp_ci.yml/badge.svg)](https://github.com/apache/rocketmq-clients/actions/workflows/cpp_ci.yml)
+[![C#](https://github.com/apache/rocketmq-clients/actions/workflows/csharp_ci.yml/badge.svg)](https://github.com/apache/rocketmq-clients/actions/workflows/csharp_ci.yml)
+
 ## Overview
 
 Polyglot solution of clients for [Apache RocketMQ](https://rocketmq.apache.org/), and both of them follow the specification of [rocketmq-apis](https://github.com/apache/rocketmq-apis), replace the previous protocol based on `RemotingCommand` by [Protocol Buffers](https://developers.google.com/protocol-buffers) and [gRPC](https://grpc.io/). Apart from that, APIs from clients of different languages share the same model and semantics.