Skip to content

Htp table optimization + workflows cleanups/v2 #96

Htp table optimization + workflows cleanups/v2

Htp table optimization + workflows cleanups/v2 #96

Workflow file for this run

name: builds
on:
- push
- pull_request
permissions: read-all
env:
DEFAULT_CFLAGS: "-Wall -Wextra -Werror -Wno-unused-parameter -Wno-unused-function"
# Apt sometimes likes to ask for user input, this will prevent that.
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
container: ubuntu:20.04
steps:
- uses: actions/[email protected]
- name: Install system dependencies
run: |
apt update
apt-get upgrade -y
apt-get -y install make \
autoconf \
build-essential \
automake \
dpkg-dev \
debhelper \
libtool \
make \
pkg-config \
zlib1g-dev
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck
ubuntu-2204:
name: Ubuntu 22.04
runs-on: ubuntu-latest
container: ubuntu:22.04
steps:
- uses: actions/[email protected]
- name: Install system dependencies
run: |
apt update
apt-get upgrade -y
apt-get -y install make \
autoconf \
build-essential \
automake \
libtool \
make \
pkg-config \
zlib1g-dev
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck