From: Pierrick Hymbert Date: Fri, 26 Apr 2024 10:27:25 +0000 (+0200) Subject: ci: server: fix python installation (#6925) X-Git-Tag: upstream/0.0.4488~1743 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=bbe3c6e76157a5d806fdc155451f0ca8936248ee;p=pkg%2Fggml%2Fsources%2Fllama.cpp ci: server: fix python installation (#6925) --- diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 67bbe6cb..a044d604 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -106,7 +106,7 @@ jobs: run: | cd examples/server/tests python3 -m venv venv - source venv/bin/activate + . venv/bin/activate pip install -r requirements.txt - name: Tests