diff options
author | 2025-02-15 16:31:55 +0000 | |
---|---|---|
committer | 2025-02-15 16:33:13 +0000 | |
commit | 9699e6eee373e48f901a3993e562674855f54700 (patch) | |
tree | 7ee501950cbc29df31a12d094590f644d9871073 /.github | |
parent | Sort dependencies (diff) |
Bump python-freeipa to 1.0.9
This required changing how we install deps in docker, as python-freeipa 1.0.9 added gssapi, which requires heimdal-dev to be installed.
We now install all project deps in the wheel-builder docker stage, and then install from cache in the actual runner stage
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 088ee66..aef0b11 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v4 - name: Install native dependencies - run: sudo apt-get update && sudo apt-get install -y libldap2-dev libsasl2-dev + run: sudo apt-get update && sudo apt-get install -y libldap2-dev libsasl2-dev heimdal-dev - name: Install Python dependencies uses: HassanAbouelela/actions/setup-python@setup-python_v1.6.0 |