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 7b721ea commit 41a26cfCopy full SHA for 41a26cf
.github/workflows/validate-install-from-source.yml
@@ -27,13 +27,18 @@ jobs:
27
- image: opensuse/leap
28
- image: opensuse/tumbleweed
29
- image: registry.suse.com/suse/sle15:15.4.27.11.31
30
+ - image: archlinux
31
+ - image: mcr.microsoft.com/cbl-mariner/base/core:2.0
32
container: ${{matrix.vector.image}}
33
steps:
34
- run: |
35
if [[ ${{matrix.vector.image}} == *"suse"* ]]; then
36
zypper -n install tar gzip
37
elif [[ ${{matrix.vector.image}} == *"centos"* ]]; then
38
dnf install which -y
39
+ elif [[ ${{matrix.vector.image}} == *"mariner"* ]]; then
40
+ GNUPGHOME=/root/.gnupg tdnf update -y &&
41
+ GNUPGHOME=/root/.gnupg tdnf install tar -y # needed for `actions/checkout`
42
fi
43
44
- uses: actions/checkout@v4
0 commit comments