File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 58
58
git \
59
59
cmake \
60
60
python3-pip \
61
+ python3-venv \
61
62
curl \
62
63
wget \
63
64
language-pack-en \
@@ -100,16 +101,13 @@ jobs:
100
101
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
101
102
cmake --build . --config ${{ matrix.build_type }} -j $(nproc) --target server
102
103
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
104
+ - name : Setup python env
105
+ id : pipenv
111
106
run : |
112
- pip install -r examples/server/tests/requirements.txt
107
+ cd examples/server/tests
108
+ python3 -m venv venv
109
+ source venv/bin/activate
110
+ pip install -r requirements.txt
113
111
114
112
- name : Tests
115
113
id : server_integration_tests
You can’t perform that action at this time.
0 commit comments