We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83b72cb commit 9e4e077Copy full SHA for 9e4e077
.github/workflows/server.yml
@@ -58,6 +58,7 @@ jobs:
58
git \
59
cmake \
60
python3-pip \
61
+ python3-venv \
62
curl \
63
wget \
64
language-pack-en \
@@ -100,16 +101,13 @@ jobs:
100
101
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
102
cmake --build . --config ${{ matrix.build_type }} -j $(nproc) --target server
103
- - name: Python setup
104
- id: setup_python
105
- uses: actions/setup-python@v5
106
- with:
107
- python-version: '3.11'
108
-
109
- - name: Tests dependencies
110
- id: test_dependencies
+ - name: Setup python env
+ id: pipenv
111
run: |
112
- pip install -r examples/server/tests/requirements.txt
+ cd examples/server/tests
+ python3 -m venv venv
+ source venv/bin/activate
+ pip install -r requirements.txt
113
114
- name: Tests
115
id: server_integration_tests
0 commit comments