Skip to content

Commit 90e3c5f

Browse files
committed
ci : more git
1 parent e0f4cef commit 90e3c5f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.devops/cublas.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build
1212
ARG CUDA_DOCKER_ARCH=all
1313

1414
RUN apt-get update && \
15-
apt-get install -y build-essential git cmake libsdl2-dev wget
15+
apt-get install -y build-essential git cmake libsdl2-dev wget git
1616

1717
WORKDIR /app
1818

.devops/main-cuda.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
1717
ENV GGML_CUDA=1
1818

1919
RUN apt-get update && \
20-
apt-get install -y build-essential libsdl2-dev wget cmake \
20+
apt-get install -y build-essential libsdl2-dev wget cmake git \
2121
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
2222

2323
# Ref: https://stackoverflow.com/a/53464012
@@ -33,7 +33,7 @@ ENV LD_LIBRARY_PATH /usr/local/cuda-${CUDA_MAIN_VERSION}/compat:$LD_LIBRARY_PATH
3333
WORKDIR /app
3434

3535
RUN apt-get update && \
36-
apt-get install -y curl ffmpeg wget cmake \
36+
apt-get install -y curl ffmpeg wget cmake git \
3737
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
3838

3939
COPY --from=build /app /app

.devops/main.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:22.04 AS build
22
WORKDIR /app
33

44
RUN apt-get update && \
5-
apt-get install -y build-essential wget cmake \
5+
apt-get install -y build-essential wget cmake git \
66
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
77

88
COPY .. .
@@ -12,7 +12,7 @@ FROM ubuntu:22.04 AS runtime
1212
WORKDIR /app
1313

1414
RUN apt-get update && \
15-
apt-get install -y curl ffmpeg libsdl2-dev wget cmake \
15+
apt-get install -y curl ffmpeg libsdl2-dev wget cmake git \
1616
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
1717

1818
COPY --from=build /app /app

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@ jobs:
393393
msystem: ${{matrix.sys}}
394394
install: >-
395395
base-devel
396+
git
396397
mingw-w64-${{matrix.env}}-toolchain
397398
mingw-w64-${{matrix.env}}-cmake
398399
mingw-w64-${{matrix.env}}-SDL2

0 commit comments

Comments
 (0)