From f8e425b985335f0ddbf72099e43268eab0560a1a Mon Sep 17 00:00:00 2001 From: David Dworken Date: Fri, 9 Feb 2024 18:52:38 -0800 Subject: [PATCH] Add two more distros for smoke testing --- .github/workflows/distro-smoke-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index 74f46a4..e544f52 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -12,7 +12,7 @@ jobs: test: strategy: matrix: - distro: ['ubuntu:latest', 'fedora:latest', 'debian:latest'] + distro: ['ubuntu:latest', 'fedora:latest', 'debian:latest', 'opensuse/leap:latest', 'rockylinux:latest'] fail-fast: false runs-on: ubuntu-latest container: ${{ matrix.distro }} @@ -32,8 +32,8 @@ jobs: # Work around a weird bug where zsh on ubuntu actions gives that directory 0777 which makes zsh refuse to start chmod 0755 -R /usr/share/zsh/ - - name: Fedora-based Setup - if: ${{ matrix.distro == 'fedora:latest' }} + - name: DNF-based Setup + if: ${{ matrix.distro == 'fedora:latest' || matrix.distro == 'opensuse/leap:latest' || matrix.distro == 'rockylinux:latest' }} run: | # Install our dependencies