This is an automated email from the ASF dual-hosted git repository.
aaronai 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 465bfcf80 Upgrade the image to the latest version (#6562)
465bfcf80 is described below
commit 465bfcf802fe8103b05aef50cb23224ecde238b7
Author: Aaron Ai <[email protected]>
AuthorDate: Mon Apr 10 12:54:40 2023 +0800
Upgrade the image to the latest version (#6562)
---
.asf.yaml | 3 +++
.github/workflows/maven.yaml | 5 +++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index a7c24f68d..b1872d166 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -42,6 +42,9 @@ github:
contexts:
- misspell-check
- check-license
+ - maven-compile (ubuntu-latest, JDK-8)
+ - maven-compile (windows-latest, JDK-8)
+ - maven-compile (macos-latest, JDK-8)
notifications:
commits: [email protected]
issues: [email protected]
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 0d3b5e231..75bf91eb1 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -7,11 +7,12 @@ on:
jobs:
java_build:
name: "maven-compile (${{ matrix.os }}, JDK-${{ matrix.jdk }})"
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
- os: [ubuntu-18.04, windows-2022, macos-11]
+ # see
https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
+ os: [ubuntu-latest, windows-latest, macos-latest]
jdk: [8]
steps:
- name: Checkout