From 6cd17bff9d9a90c86617d2992143443ced52d20a Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 12 Oct 2023 21:40:31 -0600 Subject: [PATCH] Workaround for missing Python binaries for ARM --- .gitea/workflows/fixturenet-eth-test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/fixturenet-eth-test.yml b/.gitea/workflows/fixturenet-eth-test.yml index 8d0d8da1..73804df5 100644 --- a/.gitea/workflows/fixturenet-eth-test.yml +++ b/.gitea/workflows/fixturenet-eth-test.yml @@ -19,7 +19,15 @@ jobs: steps: - name: "Clone project repository" uses: actions/checkout@v3 - - name: "Install Python" + # At present the stock setup-python action fails on Linux/aarch64 + # Conditional steps below workaroud this by using deadsnakes for that case only + - name: "Install Python for ARM on Linux" + if: ${{ runner.arch == 'arm64' && runner.os == 'Linux' }} + uses: deadsnakes/action@v3.0.1 + with: + python-version: '3.8' + - name: "Install Python cases other than ARM on Linux" + if: ${{ ! (runner.arch == 'arm64' && runner.os == 'Linux') }} uses: actions/setup-python@v4 with: python-version: '3.8'