We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ab2bc commit 1d302a8Copy full SHA for 1d302a8
.github/workflows/build_release_assets.yml
@@ -269,6 +269,8 @@ jobs:
269
- ubuntu:latest
270
- rockylinux/rockylinux:8.8
271
- opensuse/leap
272
+ # Test a distribution with no deb or rpm support
273
+ - clearlinux:latest
274
275
steps:
276
- name: Download OS packages
@@ -295,6 +297,19 @@ jobs:
295
297
zypper install -y git
296
298
rpm -i packages/*.rpm
299
;;
300
+ clearlinux*)
301
+ swupd bundle-add git
302
+
303
+ # Unpack ggshield in /usr/local/ggshield
304
+ pkg_dir=$PWD/packages
305
+ mkdir /usr/local/ggshield
306
+ cd /usr/local/ggshield
307
+ tar --strip-components 1 -xf $pkg_dir/*.tar.gz
308
309
+ # Add ggshield to $PATH
310
+ mkdir /usr/local/bin
311
+ ln -s $PWD/ggshield /usr/local/bin/ggshield
312
+ ;;
313
esac
314
315
- name: Smoke test
0 commit comments