Skip to content

Commit d0d0024

Browse files
committed
Revamp and modernize the CI scripts
This is partially copied from the pkcs11-provider CI scripts which instantiate conatiners to bring in more reasonable distro defaults and properly check on multiple compilers Signed-off-by: Simo Sorce <[email protected]>
1 parent b8e6051 commit d0d0024

File tree

1 file changed

+42
-31
lines changed

1 file changed

+42
-31
lines changed

.github/workflows/ci.yaml

+42-31
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,45 @@ name: CI
22
on: [push, pull_request]
33

44
jobs:
5-
ubuntu:
6-
runs-on: ubuntu-latest
7-
strategy:
8-
fail-fast: false
9-
matrix:
10-
name: [ubuntu-clang, ubuntu-gcc]
11-
include:
12-
- name: ubuntu-clang
13-
compiler: clang
14-
cflags: -Wall -Wextra -Werror -Wno-cast-align -Wno-unused-parameter -Wno-missing-braces
15-
- name: ubuntu-gcc
16-
compiler: gcc
17-
cflags: -Wall -Wextra -Werror -Wno-unused-parameter -Wno-format-truncation -Wno-restrict
18-
steps:
19-
- name: Checkout repository
20-
uses: actions/checkout@v2
21-
- name: Install dependencies
22-
run: |
23-
sudo apt-get update
24-
sudo apt-get install -y build-essential autopoint clang gcc docbook-{xsl,xml} libxml2-utils xml-core xsltproc lib{krb5,ini-config,keyutils,popt,selinux1,systemd,verto}-dev lib{nss,socket}-wrapper python3{,-colorama} valgrind krb5-{kdc,admin-server,kdc-ldap} ldap-utils slapd apparmor-utils
25-
- name: Silence AppArmor
26-
run: sudo aa-complain $(which slapd)
27-
- name: Setup
28-
run: |
29-
autoreconf -fiv
30-
./configure
31-
- name: Build and test
32-
env:
33-
CFLAGS: ${{ matrix.cflags }}
34-
CC: ${{ matrix.compiler }}
35-
run: make -s distcheck DISTCHECK_CONFIGURE_FLAGS="CFLAGS=\"$CFLAGS\" CC=\"$CC\""
5+
ci:
6+
name: CI
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
name: [fedora, debian]
12+
compiler: [gcc, clang]
13+
include:
14+
- name: fedora
15+
container: fedora:latest
16+
- name: debian
17+
container: debian:sid
18+
container: ${{ matrix.container }}
19+
steps:
20+
- name: Install dependencies
21+
run: |
22+
if [ -f /etc/redhat-release ]; then
23+
dnf -y install ${{ matrix.compiler }} make \
24+
pkgconf-pkg-config openssl-devel \
25+
docbook-style-xsl libxml2 xml-common libxslt \
26+
krb5-workstation krb5-devel krb5-server \
27+
libini_config {nss,socket}_wrapper openldap-server
28+
elif [ -f /etc/debian_version ]; then
29+
apt-get -q update
30+
apt-get -yq install ${{ matrix.compiler }} pkg-config \
31+
libssl-dev docbook-{xsl,xml} libxml2-utils xml-core xsltproc \
32+
lib{krb5,ini-config,keyutils,popt,selinux1,systemd,verto}-dev \
33+
lib{nss,socket}-wrapper python3{,-colorama} \
34+
krb5-{kdc,admin-server,kdc-ldap} ldap-utils slapd
35+
fi
36+
fi
37+
- name: Checkout repository
38+
uses: actions/checkout@v4
39+
- name: Setup
40+
run: |
41+
autoreconf -fiv
42+
./configure
43+
- name: Build and test
44+
env:
45+
CC: ${{ matrix.compiler }}
46+
run: make -s distcheck CC=\"$CC\""

0 commit comments

Comments
 (0)