소스 검색

ci: server: fix python installation (#6918)

Pierrick Hymbert 1 년 전
부모
커밋
d4a9afc100
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      .github/workflows/server.yml

+ 6 - 0
.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: |