Skip to content

Commit ae6e910

Browse files
ggerganovjoelvaneenwyk
authored andcommitted
ci : install git
1 parent b09f6ba commit ae6e910

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
4545
set -e
4646
apt update
47-
apt install -y build-essential libsdl2-dev cmake
47+
apt install -y build-essential libsdl2-dev cmake git
4848
cmake -B build
4949
cmake --build build --config Release -j $(nproc)'
5050
@@ -70,7 +70,7 @@ jobs:
7070
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
7171
set -e
7272
apt update
73-
apt install -y build-essential libsdl2-dev cmake
73+
apt install -y build-essential libsdl2-dev cmake git
7474
cmake -B build -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv8-a
7575
cmake --build build --config Release -j $(nproc)'
7676
@@ -96,7 +96,7 @@ jobs:
9696
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
9797
set -e
9898
apt update
99-
apt install -y build-essential libsdl2-dev cmake
99+
apt install -y build-essential libsdl2-dev cmake git
100100
cmake -B build -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv7-a+fp
101101
cmake --build build --config Release -j $(nproc)'
102102
@@ -168,8 +168,8 @@ jobs:
168168
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
169169
set -e
170170
apt update
171-
apt install -y build-essential cmake libsdl2-dev
172-
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DCMAKE_TOOLCHAIN_FILE="${{ env.VCPKG_TOOLCHAIN }}"
171+
apt install -y build-essential cmake libsdl2-dev git
172+
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }}
173173
make
174174
ctest -L gh --output-on-failure'
175175
@@ -196,7 +196,7 @@ jobs:
196196
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
197197
set -e
198198
apt update
199-
apt install -y build-essential cmake libsdl2-dev
199+
apt install -y build-essential cmake libsdl2-dev git
200200
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv8-a
201201
make
202202
ctest -L gh --output-on-failure'
@@ -224,7 +224,7 @@ jobs:
224224
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
225225
set -e
226226
apt update
227-
apt install -y build-essential cmake libsdl2-dev
227+
apt install -y build-essential cmake libsdl2-dev git
228228
cmake . -DWHISPER_SDL2=ON -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DGGML_NATIVE=OFF -DGGML_CPU_ARM_ARCH=armv7-a+fp
229229
make
230230
ctest -L gh --output-on-failure'
@@ -260,7 +260,7 @@ jobs:
260260
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
261261
set -e
262262
apt update
263-
apt install -y clang build-essential cmake libsdl2-dev
263+
apt install -y clang build-essential cmake libsdl2-dev git
264264
cmake . -DWHISPER_SDL2=ON \
265265
-DCMAKE_BUILD_TYPE=${{ matrix.build }} \
266266
-DCMAKE_TOOLCHAIN_FILE="${{ env.VCPKG_TOOLCHAIN }}" \
@@ -297,8 +297,8 @@ jobs:
297297
-w /workspace ${{ env.ubuntu_image }} /bin/sh -c '
298298
set -e
299299
apt update
300-
apt install -y build-essential cmake
301-
cmake . -DCMAKE_BUILD_TYPE=Debug -DWHISPER_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_TOOLCHAIN_FILE="${{ env.VCPKG_TOOLCHAIN }}"
300+
apt install -y build-essential cmake git
301+
cmake . -DCMAKE_BUILD_TYPE=Debug -DWHISPER_SANITIZE_${{ matrix.sanitizer }}=ON
302302
make
303303
ctest -L gh --output-on-failure'
304304
@@ -337,12 +337,12 @@ jobs:
337337
shell: bash
338338
run: |
339339
sudo apt update
340-
sudo apt install intel-oneapi-compiler-dpcpp-cpp
340+
sudo apt install intel-oneapi-compiler-dpcpp-cpp git
341341
342342
- name: install oneAPI MKL library
343343
shell: bash
344344
run: |
345-
sudo apt install intel-oneapi-mkl-devel
345+
sudo apt install intel-oneapi-mkl-devel git
346346
347347
- name: Clone
348348
id: checkout
@@ -392,7 +392,7 @@ jobs:
392392
shell: bash
393393
run: |
394394
sudo apt update
395-
sudo apt install intel-oneapi-compiler-dpcpp-cpp
395+
sudo apt install intel-oneapi-compiler-dpcpp-cpp git
396396
397397
- name: install oneAPI MKL library
398398
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)