ggerganov commited on
Commit
b349a86
·
1 Parent(s): 3f57eda

ci : more git

Browse files
.devops/cublas.Dockerfile CHANGED
@@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build
12
  ARG CUDA_DOCKER_ARCH=all
13
 
14
  RUN apt-get update && \
15
- apt-get install -y build-essential git cmake libsdl2-dev wget
16
 
17
  WORKDIR /app
18
 
 
12
  ARG CUDA_DOCKER_ARCH=all
13
 
14
  RUN apt-get update && \
15
+ apt-get install -y build-essential git cmake libsdl2-dev wget git
16
 
17
  WORKDIR /app
18
 
.devops/main-cuda.Dockerfile CHANGED
@@ -17,7 +17,7 @@ ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
17
  ENV GGML_CUDA=1
18
 
19
  RUN apt-get update && \
20
- apt-get install -y build-essential libsdl2-dev wget cmake \
21
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
22
 
23
  # Ref: https://stackoverflow.com/a/53464012
@@ -33,7 +33,7 @@ ENV LD_LIBRARY_PATH /usr/local/cuda-${CUDA_MAIN_VERSION}/compat:$LD_LIBRARY_PATH
33
  WORKDIR /app
34
 
35
  RUN apt-get update && \
36
- apt-get install -y curl ffmpeg wget cmake \
37
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
38
 
39
  COPY --from=build /app /app
 
17
  ENV GGML_CUDA=1
18
 
19
  RUN apt-get update && \
20
+ apt-get install -y build-essential libsdl2-dev wget cmake git \
21
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
22
 
23
  # Ref: https://stackoverflow.com/a/53464012
 
33
  WORKDIR /app
34
 
35
  RUN apt-get update && \
36
+ apt-get install -y curl ffmpeg wget cmake git \
37
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
38
 
39
  COPY --from=build /app /app
.devops/main.Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM ubuntu:22.04 AS build
2
  WORKDIR /app
3
 
4
  RUN apt-get update && \
5
- apt-get install -y build-essential wget cmake \
6
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
7
 
8
  COPY .. .
@@ -12,7 +12,7 @@ FROM ubuntu:22.04 AS runtime
12
  WORKDIR /app
13
 
14
  RUN apt-get update && \
15
- apt-get install -y curl ffmpeg libsdl2-dev wget cmake \
16
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
17
 
18
  COPY --from=build /app /app
 
2
  WORKDIR /app
3
 
4
  RUN apt-get update && \
5
+ apt-get install -y build-essential wget cmake git \
6
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
7
 
8
  COPY .. .
 
12
  WORKDIR /app
13
 
14
  RUN apt-get update && \
15
+ apt-get install -y curl ffmpeg libsdl2-dev wget cmake git \
16
  && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
17
 
18
  COPY --from=build /app /app
.github/workflows/build.yml CHANGED
@@ -393,6 +393,7 @@ jobs:
393
  msystem: ${{matrix.sys}}
394
  install: >-
395
  base-devel
 
396
  mingw-w64-${{matrix.env}}-toolchain
397
  mingw-w64-${{matrix.env}}-cmake
398
  mingw-w64-${{matrix.env}}-SDL2
 
393
  msystem: ${{matrix.sys}}
394
  install: >-
395
  base-devel
396
+ git
397
  mingw-w64-${{matrix.env}}-toolchain
398
  mingw-w64-${{matrix.env}}-cmake
399
  mingw-w64-${{matrix.env}}-SDL2