-
Notifications
You must be signed in to change notification settings - Fork 33
48 lines (46 loc) · 1.56 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Build and test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ubuntu:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
conf-shared: [--enable-static, --enable-shared ]
conf-xml: [--with-expat, --with-libxml2 ]
conf-ssl: [--without-ssl, --with-ssl=openssl, --with-ssl=gnutls]
conf-memleak: [--disable-memleak, --enable-memleak]
conf-debug: [--enable-debug, --disable-debug]
conf-gssapi: [--with-gssapi, --without-gssapi]
steps:
- uses: actions/checkout@v2
- run: ./autogen.sh
- run: case ${{matrix.conf-ssl}} in
*gnutls) sudo apt-get update && sudo apt-get -y install libgnutls28-dev gnutls-bin xmlto ;;
esac
- run: case ${{matrix.conf-gssapi}} in
*with-gssapi) sudo apt-get update && sudo apt-get -y install libkrb5-dev ;;
esac
- run: ./configure ${{matrix.conf-shared}} ${{matrix.conf-xml}}
${{matrix.conf-ssl}} ${{matrix.conf-memleak}}
${{matrix.conf-debug}} ${{matrix.conf-gssapi}}
- run: make
- run: make check
centos:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream9
steps:
- run: dnf update -y && dnf install -y autoconf make expat-devel openssl-devel krb5-devel
- uses: actions/checkout@v3
- run: ./autogen.sh
- run: ./configure --with-ssl=openssl --with-expat --enable-debug --with-gssapi
- run: make
- run: make check