Skip to content

Commit

Permalink
github: add initial workflow
Browse files Browse the repository at this point in the history
Adds Ubuntu LTS versions and CentOS 7 with make distcheck.

Remove stale travis file.
  • Loading branch information
victorjulien committed Nov 22, 2022
1 parent 20800fa commit 94656ac
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 24 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
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:
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 \
autoconf \
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 \
autoconf \
automake \
libtool \
make \
pkg-config \
zlib1g-dev
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck

centos-7:
name: CentOS 7
runs-on: ubuntu-latest
container: centos:7
steps:
- uses: actions/[email protected]
- name: Install system dependencies
run: |
yum -y install \
autoconf \
automake \
gcc \
gcc-c++ \
libtool \
make \
pkgconfig \
which \
zlib-devel
- run: ./autogen.sh
- run: CFLAGS="${DEFAULT_CFLAGS}" ./configure
- run: make -j2
- run: make install
- run: make distcheck
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

0 comments on commit 94656ac

Please sign in to comment.