From 0430837f213312ec37695c30c9c9e79cf8f890ac Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 21 Jan 2025 17:45:34 -0500 Subject: [PATCH] Add arm64 runners for python checks Signed-off-by: Peter Zhu --- .github/workflows/python-tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 5ac269c9dc..6a9f5c657a 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -13,7 +13,8 @@ jobs: strategy: matrix: os: - - macos-latest + - macos-latest # arm64 + - macos-latest-large # x64 - windows-latest runs-on: ${{ matrix.os }} env: @@ -47,7 +48,12 @@ jobs: python-tests-linux: needs: Get-CI-Image-Tag - runs-on: ubuntu-latest + strategy: + matrix: + os: + - ubuntu-24.04-arm # arm64-preview + - ubuntu-latest # x64 + runs-on: ${{ matrix.os }} container: # using the same image which is used by opensearch-build team to build the OpenSearch Distribution # this image tag is subject to change as more dependencies and updates will arrive over time