CI python linux arm install
Test the stack. / Run unit tests (pull_request) Successful in 5m55s
Test the stack. / Run integration tests (pull_request) Successful in 53m49s

This commit is contained in:
2024-07-25 21:22:37 +08:00
parent 685f1aa4da
commit cecb7bf16c
2 changed files with 14 additions and 5 deletions
+9 -1
View File
@@ -51,7 +51,15 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get update && apt-get install -y jq
- 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.11
- 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.11