From 259230359a5262629e0ee47fe85ec04c517d13c4 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Wed, 29 May 2024 21:45:09 +0200 Subject: [PATCH] Use specified architecture for CI tests instead of guessing it on setup-python, due to x86 tests on Windows, which happens on a x64 OS --- .github/workflows/push.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 572d32eb..36fea400 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -68,6 +68,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} + architecture: ${{ matrix.architecture == 'aarch64' && 'arm64' || matrix.architecture }} - name: Setup java uses: actions/setup-java@v4