Skip to content

Commit 699ed9b

Browse files
committed
[DOP-22120] Fix CI
1 parent e957546 commit 699ed9b

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,25 @@ jobs:
3636
python-version: ${{ env.DEFAULT_PYTHON }}
3737

3838
- name: Install system dependencies
39-
# this step is needed for successful installation of "bonsai" library in python dependencies
40-
run: sudo apt-get update && sudo apt-get install -y libldap2-dev libsasl2-dev
39+
run: |
40+
sudo apt-get update && \
41+
sudo apt-get install -y
42+
libsasl2-dev \
43+
libsasl2-modules-gssapi-mit \
44+
libsasl2-modules-ldap \
45+
libsasl2-modules \
46+
openjdk-17-jdk \
47+
libssl-dev \
48+
libldap2-dev \
49+
autoconf \
50+
gcc \
51+
g++ \
52+
make \
53+
libnghttp2-dev \
54+
libffi-dev \
55+
libkrb5-dev \
56+
krb5-user \
57+
curl
4158
4259
- name: Install poetry
4360
uses: snok/install-poetry@v1

.github/workflows/unit-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,27 @@ jobs:
2828
with:
2929
python-version: ${{ env.DEFAULT_PYTHON }}
3030

31+
- name: Install system dependencies
32+
run: |
33+
sudo apt-get update && \
34+
sudo apt-get install -y
35+
libsasl2-dev \
36+
libsasl2-modules-gssapi-mit \
37+
libsasl2-modules-ldap \
38+
libsasl2-modules \
39+
openjdk-17-jdk \
40+
libssl-dev \
41+
libldap2-dev \
42+
autoconf \
43+
gcc \
44+
g++ \
45+
make \
46+
libnghttp2-dev \
47+
libffi-dev \
48+
libkrb5-dev \
49+
krb5-user \
50+
curl
51+
3152
- name: Install poetry ${{ env.POETRY_VERSION }}
3253
uses: snok/install-poetry@v1
3354
with:

0 commit comments

Comments
 (0)