Skip to content

Commit

Permalink
workflows: add almalinux 8 and 9 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
inashivb committed Aug 14, 2024
1 parent 1ba5803 commit ce25f9e
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,52 @@ env:
DEBIAN_FRONTEND: "noninteractive"

jobs:
almalinux-9:
name: AlmaLinux 9
runs-on: ubuntu-latest
container: almalinux:9
steps:
- uses: actions/[email protected]
- name: Install system dependencies
run: |
dnf -y install make \
autoconf \
automake \
libtool \
gcc \
gcc-c++ \
make \
pkgconfig \
zlib-devel
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck

almalinux-8:
name: AlmaLinux 8
runs-on: ubuntu-latest
container: almalinux:8
steps:
- uses: actions/[email protected]
- name: Install system dependencies
run: |
dnf -y install make \
autoconf \
automake \
libtool \
gcc \
gcc-c++ \
make \
pkgconfig \
zlib-devel
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck

ubuntu-2004:
name: Ubuntu 20.04
runs-on: ubuntu-latest
Expand All @@ -26,7 +72,6 @@ jobs:
apt-get -y install make \
autoconf \
build-essential \
autoconf \
automake \
dpkg-dev \
debhelper \
Expand All @@ -53,7 +98,6 @@ jobs:
apt-get -y install make \
autoconf \
build-essential \
autoconf \
automake \
libtool \
make \
Expand Down

0 comments on commit ce25f9e

Please sign in to comment.