Skip to content
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
12 changes: 8 additions & 4 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,15 @@ jobs:
container: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v6
- name: Install dependencies
- name: Install dependencies using apt-get
if: ${{ matrix.os-version == 'debian:bullseye' || matrix.os-version == 'debian:bookworm' }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would be tempted to just check for debian here to avoid future changes

run: |
(apt-get update &&
apt-get install -y openssl perl make gcc libssl-dev sudo curl) ||
(yum install --skip-broken -y openssl perl make gcc openssl-devel sudo curl)
apt-get update
apt-get install -y openssl perl make gcc libssl-dev sudo curl
- name: Install dependencies using yum
if: ${{ matrix.os-version == 'almalinux:9' }}
run: |
yum install --skip-broken -y openssl perl make gcc openssl-devel sudo curl
- run: openssl version
- run: perl -V
- name: uses install-with-cpm
Expand Down