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

[rocketmq-clients] branch cpp updated: Try to build on Linux, MacOS, Windows

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

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


The following commit(s) were added to refs/heads/cpp by this push:
     new 4735ead  Try to build on Linux, MacOS, Windows
4735ead is described below

commit 4735eadc25c0a10291214b98e560f0bce3325559
Author: Li Zhanhui <li...@gmail.com>
AuthorDate: Fri Jul 1 16:15:36 2022 +0800

    Try to build on Linux, MacOS, Windows
---
 .github/workflows/cpp_build.yml | 48 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/.github/workflows/cpp_build.yml b/.github/workflows/cpp_build.yml
index 4d02855..d56cf36 100644
--- a/.github/workflows/cpp_build.yml
+++ b/.github/workflows/cpp_build.yml
@@ -9,3 +9,51 @@ jobs:
       - name: Compile All Targets
         working-directory: ./cpp
         run: bazel build //...
+  cpp_ubuntu_20_04:
+      name: Ubuntu 20.04
+      runs-on: ubuntu-20.04
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...
+  cpp_ubuntu_22_04:
+      name: Ubuntu 22.04
+      runs-on: ubuntu-22.04
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...
+  cpp_macos_12:
+      name: MacOS 12
+      runs-on: macos-12
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...
+  cpp_macos_11:
+      name: MacOS 11
+      runs-on: macos-11
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...          
+  cpp_windows_2022:
+      name: Windows 2022
+      runs-on: windows-2022
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...          
+  cpp_windows_2019:
+      name: Windows 2019
+      runs-on: windows-2019
+      steps:
+        - uses: actions/checkout@v2
+        - name: Compile All Targets
+          working-directory: ./cpp
+          run: bazel build //...          
\ No newline at end of file