File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -295,8 +295,19 @@ jobs:
295
295
- name : Install requirements
296
296
run : |
297
297
case "${{ matrix.image }}" in
298
+ debian:*|ubuntu:*)
299
+ apt update
300
+ apt install --no-install-recommends -y git
301
+ ;;
302
+ rockylinux*)
303
+ yum install -y git-core
304
+ ;;
305
+ opensuse*)
306
+ zypper install -y git-core
307
+ ;;
298
308
clearlinux*)
299
309
swupd bundle-add libstdcpp
310
+ swupd bundle-add git
300
311
;;
301
312
esac
302
313
@@ -312,20 +323,15 @@ jobs:
312
323
run : |
313
324
case "${{ matrix.image }}" in
314
325
debian:*|ubuntu:*)
315
- apt update
316
- apt install --no-install-recommends -y git
317
326
dpkg -i packages/*.deb
318
327
;;
319
328
rockylinux*)
320
- yum install -y git-core
321
329
rpm -i packages/*.rpm
322
330
;;
323
331
opensuse*)
324
- zypper install -y git-core
325
332
rpm -i packages/*.rpm
326
333
;;
327
334
clearlinux*)
328
- swupd bundle-add git
329
335
330
336
# Unpack ggshield in /usr/local/ggshield
331
337
pkg_dir=$PWD/packages
You can’t perform that action at this time.
0 commit comments