This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch linux-arm64 in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit de0ce6c589e8ecd9b5a45563ad76aaec7ca6c06b Author: Per Abich <[email protected]> AuthorDate: Thu Mar 13 09:28:44 2025 +0100 Found some more places where the platform matrix needs adjusting --- .github/workflows/early-access.yaml | 8 +++++++- .github/workflows/release.yaml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/early-access.yaml b/.github/workflows/early-access.yaml index cc3aa4ca..6fc817f1 100644 --- a/.github/workflows/early-access.yaml +++ b/.github/workflows/early-access.yaml @@ -80,7 +80,13 @@ jobs: fail-fast: false matrix: # binaries wanted: linux amd64, mac M1, mac intel, windows x86 - os: [ ubuntu-latest, macos-latest, macos-13, windows-latest ] + os: [ ubuntu-latest, macos-latest, macos-13, macos-14, windows-latest ] + arch: [ x64, arm64 ] + exclude: + - os: macos-13 + arch: arm64 + - os: windows-latest + arch: arm64 runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b32c42aa..123c3b65 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: fail-fast: true matrix: # binaries wanted: linux amd64, mac intel, mac M1, windows x86 - os: [ ubuntu-latest, macos-13, macos-14, windows-latest ] + os: [ ubuntu-latest, macos-latest, macos-13, macos-14, windows-latest ] arch: [ x64, arm64 ] exclude: - os: macos-13
