Skip to content

Commit 7fdfcaa

Browse files
Fix missing CI *.so libs (#2294)
1 parent e4680c4 commit 7fdfcaa

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/e2e_tests_inference_experimental_cpu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
- name: 📦 Install dependencies
3838
working-directory: inference_models
3939
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y libgles2-mesa libegl1
4042
python -m pip install --upgrade pip
4143
python -m pip install uv
4244
python -m uv venv

.github/workflows/e2e_tests_inference_experimental_gpu.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ jobs:
4545
cuda-nvcc-12-5 \
4646
cuda-profiler-api-12-5 \
4747
libcurand-dev-12-5 \
48-
libvips-dev
49-
48+
libvips-dev \
49+
libgles2 \
50+
libegl1
5051
sudo cp /var/cache/apt/archives/*.deb ~/apt-cache/ 2>/dev/null || true
5152
sudo chown -R $(whoami):$(whoami) ~/apt-cache
5253
- name: 📦 Install dependencies

.github/workflows/integration_tests_inference_experimental_gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
cuda-profiler-api-12-5 \
8181
libcurand-dev-12-5 \
8282
libvips-dev \
83-
libgles2-mesa \
83+
libgles2 \
8484
libegl1
8585
8686
sudo cp /var/cache/apt/archives/*.deb ~/apt-cache/ 2>/dev/null || true

0 commit comments

Comments
 (0)