Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update list of container images used for the tests. #441

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ jobs:
- {name: "debian", tag: "testing"}
- {name: "debian", tag: "12"}
- {name: "debian", tag: "11"}
- {name: "debian", tag: "10"}
- {name: "fedora/fedora", tag: "rawhide", url: "quay.io/"}
- {name: "fedora/fedora", tag: "40", url: "quay.io/"}
- {name: "fedora/fedora", tag: "39", url: "quay.io/"}
- {name: "gentoo/stage3", tag: "latest"}
- {name: "opensuse/tumbleweed", tag: "latest", variant: "-default", url: "registry.opensuse.org/"}
- {name: "opensuse/leap", tag: "15.5", variant: "-default", url: "registry.opensuse.org/"}
- {name: "opensuse/leap", tag: "15.6", variant: "-default", url: "registry.opensuse.org/"}
- {name: "ubuntu", tag: "24.04"}
- {name: "ubuntu", tag: "23.10"}
- {name: "ubuntu", tag: "22.04"}
Expand All @@ -52,8 +53,8 @@ jobs:

- uses: actions/checkout@v3

- name: Install AlmaLinux dependencies
if: matrix.distro.name == 'almalinux'
- name: Install dependencies for Red Hat based distributions
if: matrix.distro.name == 'almalinux' || contains(matrix.distro.name, 'centos') || contains(matrix.distro.name, 'fedora')
run: |
yum install -y diffutils elfutils-libelf gcc kernel kernel-devel make openssl

Expand All @@ -67,22 +68,12 @@ jobs:
run: |
pacman -Syu --noconfirm diffutils gcc make linux${{ matrix.distro.variant }} linux${{ matrix.distro.variant }}-headers openssl

- name: Install CentOS dependencies
if: contains(matrix.distro.name, 'centos')
run: |
yum install -y diffutils elfutils-libelf gcc kernel kernel-devel make openssl

- name: Install Debian dependencies
if: matrix.distro.name == 'debian'
run: |
apt-get update -q
apt-get install -qy make linux-headers-amd64 linux-image-amd64 openssl xz-utils

- name: Install Fedora dependencies
if: contains(matrix.distro.name, 'fedora')
run: |
yum install -y diffutils elfutils-libelf gcc kernel kernel-devel make openssl

- name: Install Gentoo Linux dependencies
if: matrix.distro.name == 'gentoo/stage3'
run: |
Expand Down
Loading