Skip to content

Commit e0f4cef

Browse files
committed
ci : install git
1 parent 2344609 commit e0f4cef

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
3939
set -e
4040
apt update
41-
apt install -y build-essential libsdl2-dev cmake
41+
apt install -y build-essential libsdl2-dev cmake git
4242
cmake -B build
4343
cmake --build build --config Release -j $(nproc)'
4444
@@ -64,7 +64,7 @@ jobs:
6464
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
6565
set -e
6666
apt update
67-
apt install -y build-essential libsdl2-dev cmake
67+
apt install -y build-essential libsdl2-dev cmake git
6868
cmake -B build -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv8-a
6969
cmake --build build --config Release -j $(nproc)'
7070
@@ -90,7 +90,7 @@ jobs:
9090
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
9191
set -e
9292
apt update
93-
apt install -y build-essential libsdl2-dev cmake
93+
apt install -y build-essential libsdl2-dev cmake git
9494
cmake -B build -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv7-a+fp
9595
cmake --build build --config Release -j $(nproc)'
9696
@@ -152,7 +152,7 @@ jobs:
152152
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
153153
set -e
154154
apt update
155-
apt install -y build-essential cmake libsdl2-dev
155+
apt install -y build-essential cmake libsdl2-dev git
156156
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }}
157157
make
158158
ctest -L gh --output-on-failure'
@@ -180,7 +180,7 @@ jobs:
180180
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
181181
set -e
182182
apt update
183-
apt install -y build-essential cmake libsdl2-dev
183+
apt install -y build-essential cmake libsdl2-dev git
184184
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv8-a
185185
make
186186
ctest -L gh --output-on-failure'
@@ -208,7 +208,7 @@ jobs:
208208
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
209209
set -e
210210
apt update
211-
apt install -y build-essential cmake libsdl2-dev
211+
apt install -y build-essential cmake libsdl2-dev git
212212
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv7-a+fp
213213
make
214214
ctest -L gh --output-on-failure'
@@ -239,7 +239,7 @@ jobs:
239239
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
240240
set -e
241241
apt update
242-
apt install -y clang build-essential cmake libsdl2-dev
242+
apt install -y clang build-essential cmake libsdl2-dev git
243243
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
244244
make
245245
ctest -L gh --output-on-failure'
@@ -267,7 +267,7 @@ jobs:
267267
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
268268
set -e
269269
apt update
270-
apt install -y build-essential cmake
270+
apt install -y build-essential cmake git
271271
cmake . -DCMAKE_BUILD_TYPE=Debug -DWHISPER_SANITIZE_${{ matrix.sanitizer }}=ON
272272
make
273273
ctest -L gh --output-on-failure'
@@ -302,12 +302,12 @@ jobs:
302302
shell: bash
303303
run: |
304304
sudo apt update
305-
sudo apt install intel-oneapi-compiler-dpcpp-cpp
305+
sudo apt install intel-oneapi-compiler-dpcpp-cpp git
306306
307307
- name: install oneAPI MKL library
308308
shell: bash
309309
run: |
310-
sudo apt install intel-oneapi-mkl-devel
310+
sudo apt install intel-oneapi-mkl-devel git
311311
312312
- name: Clone
313313
id: checkout
@@ -352,7 +352,7 @@ jobs:
352352
shell: bash
353353
run: |
354354
sudo apt update
355-
sudo apt install intel-oneapi-compiler-dpcpp-cpp
355+
sudo apt install intel-oneapi-compiler-dpcpp-cpp git
356356
357357
- name: install oneAPI MKL library
358358
shell: bash

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Dependencies
2323
run: |
2424
sudo apt-get update
25-
sudo apt-get install build-essential
25+
sudo apt-get install build-essential git
2626
sudo apt-get install cmake
2727
sudo apt-get install libsdl2-dev
2828

0 commit comments

Comments
 (0)