File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -190,15 +190,15 @@ jobs:
190
190
run : |
191
191
make docker-build-llama-cpp
192
192
make docker-save-llama-cpp
193
- make build-api
193
+ PATH="$PATH:$HOME/go/bin" make build-api
194
194
./local-ai backends install "ocifile://$PWD/backend-images/llama-cpp.tar"
195
195
- name : Build images
196
196
run : |
197
197
docker build --build-arg FFMPEG=true --build-arg MAKEFLAGS="--jobs=5 --output-sync=target" -t local-ai:tests -f Dockerfile .
198
198
BASE_IMAGE=local-ai:tests DOCKER_AIO_IMAGE=local-ai-aio:test make docker-aio
199
199
- name : Test
200
200
run : |
201
- PATH="$PATH:$HOME/go/bin" LOCALAI_MODELS_DIR=$PWD/models LOCALAI_IMAGE_TAG=test LOCALAI_IMAGE=local-ai-aio \
201
+ PATH="$PATH:$HOME/go/bin" LOCALAI_BACKEND_DIR=$PWD/backends LOCALAI_MODELS_DIR=$PWD/models LOCALAI_IMAGE_TAG=test LOCALAI_IMAGE=local-ai-aio \
202
202
make run-e2e-aio
203
203
- name : Setup tmate session if tests fail
204
204
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ ARG GO_VERSION=1.22.6
66
66
RUN apt-get update && \
67
67
apt-get install -y --no-install-recommends \
68
68
build-essential \
69
- ccache \
69
+ ccache git \
70
70
ca-certificates \
71
71
make \
72
72
curl unzip \
You can’t perform that action at this time.
0 commit comments