This is an automated email from the ASF dual-hosted git repository.
lizhanhui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git
The following commit(s) were added to refs/heads/develop by this push:
new 6da56d771 Support multiple platform for github actuon runner (#4969)
6da56d771 is described below
commit 6da56d7714d508281d4dfd698e49090d542f3d0f
Author: Aaron Ai <[email protected]>
AuthorDate: Fri Sep 2 13:05:34 2022 +0800
Support multiple platform for github actuon runner (#4969)
---
.github/workflows/bazel.yml | 2 +-
.github/workflows/maven.yaml | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml
index e251655e0..b91a53b9d 100644
--- a/.github/workflows/bazel.yml
+++ b/.github/workflows/bazel.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
+ os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- name: Build
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 3165dedcc..2c4b87cef 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -9,8 +9,9 @@ jobs:
name: "maven-compile (${{ matrix.os }}, JDK-${{ matrix.jdk }})"
runs-on: ${{ matrix.os }}
strategy:
+ fail-fast: false
matrix:
- os: [ubuntu-18.04]
+ os: [ubuntu-18.04, windows-2022, macos-11]
jdk: [8]
steps:
- name: Checkout