From a9811242f30131aca84f325d98f117f2fa34667f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 21 Oct 2024 10:25:14 +0200 Subject: [PATCH] ci: also verify that installation works on Mariner and Arch Linux These currently work, too, and we probably want to keep it that way. Signed-off-by: Johannes Schindelin --- .github/workflows/validate-install-from-source.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/validate-install-from-source.yml b/.github/workflows/validate-install-from-source.yml index 4b67b00ae5..19ceccde63 100644 --- a/.github/workflows/validate-install-from-source.yml +++ b/.github/workflows/validate-install-from-source.yml @@ -27,6 +27,8 @@ jobs: - image: opensuse/leap - image: opensuse/tumbleweed - image: registry.suse.com/suse/sle15:15.4.27.11.31 + - image: archlinux + - image: mcr.microsoft.com/cbl-mariner/base/core:2.0 container: ${{matrix.vector.image}} steps: - run: | @@ -34,6 +36,9 @@ jobs: zypper -n install tar gzip elif [[ ${{matrix.vector.image}} == *"centos"* ]]; then dnf install which -y + elif [[ ${{matrix.vector.image}} == *"cbl-mariner"* ]]; then + tdnf update -y && + tdnf install tar -y fi - uses: actions/checkout@v4