From b4efaaa57356ddcd8349d27fffac7b09fa8f64e0 Mon Sep 17 00:00:00 2001 From: tersec Date: Fri, 11 Oct 2024 09:08:46 +0000 Subject: [PATCH] test with macOS ARM64 (#6635) * test with macOS ARM64 * assign platform variable --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcf63e5aad..7661fdc527 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,8 @@ jobs: cpu: amd64 - os: macos cpu: amd64 + - os: macos + cpu: arm64 - os: windows cpu: amd64 branch: [~, upstream/version-2-0] @@ -117,6 +119,8 @@ jobs: run: | if [[ '${{ matrix.target.cpu }}' == 'amd64' ]]; then PLATFORM=x64 + elif [[ '${{ matrix.target.cpu }}' == 'arm64' ]]; then + PLATFORM=arm64 else PLATFORM=x86 fi