summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierrick Hymbert <pierrick.hymbert@gmail.com>2024-04-26 09:27:49 +0200
committerGitHub <noreply@github.com>2024-04-26 09:27:49 +0200
commitd4a9afc1009f0da88d04b2c5f672d81d5ae94675 (patch)
tree89cd445a8b927edb03a6c4005267de63ba0f06d7
parent7d641c26ac73956a54b204cabefe85c764823678 (diff)
ci: server: fix python installation (#6918)
-rw-r--r--.github/workflows/server.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml
index 499611b5..955fd9a5 100644
--- a/.github/workflows/server.yml
+++ b/.github/workflows/server.yml
@@ -100,6 +100,12 @@ jobs:
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
cmake --build . --config ${{ matrix.build_type }} -j $(nproc) --target server
+ - name: Python setup
+ id: setup_python
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.11'
+
- name: Tests dependencies
id: test_dependencies
run: |