From d50fcffcce7a10214f87d70d3e5c99f52532bed9 Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Mon, 15 Jul 2024 21:13:26 +0200 Subject: [PATCH] s --- .github/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43077c3256..19ef22a964 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -216,12 +216,16 @@ jobs: with: python-version: "3.12" cache: pip + - name: Download wheel + uses: actions/download-artifact@v4 + with: + name: wheel + path: dist - name: Install os requirements for python-ldap - run: | - sudo apt update - sudo apt install --yes libldap2-dev libsasl2-dev + run: sudo apt-get update && sudo apt-get install --yes libldap2-dev libsasl2-dev - run: python -m pip install --upgrade pip - - run: python -m pip install "$(ls dist/*.whl)[allauth,ci,dev,gunicorn,ldap,mysql,postgres,pytest]" + - name: Install rdmo wheel with all optional dependency groups + run: python -m pip install "$(ls dist/*.whl)[allauth,ci,dev,gunicorn,ldap,mysql,postgres,pytest]" - uses: actions/setup-node@v4 with: node-version: 18