From de3d937af94b51ac3884c3f57e9e640d599b9ae4 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 13 Feb 2026 22:50:10 +0100 Subject: [PATCH] libffi-dev --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e4800b7..74cf0432 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,8 +17,8 @@ jobs: - name: Test with newest Python on latest Ubuntu run: tox -c pyproject.toml -e py - test-ubuntu-python-32bit: - name: Test Ubuntu (Python 3.11 32-bit) + test--python-32bit: + name: Test Ubuntu/Alpine (32-bit) needs: [lint, test-ubuntu-python-newest] runs-on: ubuntu-latest container: @@ -49,13 +49,13 @@ jobs: - uses: actions/setup-python@v5 - name: Install Python dependencies run: | - apk add py3-pip py3-tox gcc python3-dev libc-dev + apk add py3-pip py3-tox gcc python3-dev libc-dev libffi-dev - name: Test 32-bit run: tox -c /__w/Radicale/Radicale/pyproject.toml -e py test-ubuntu-python-oldest: name: Test Ubuntu (latest Python:oldest) - needs: [lint, test-ubuntu-python-newest, test-ubuntu-python-32bit] + needs: [lint, test-ubuntu-python-newest, test-python-32bit] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4