From d6f6b6e7234cce8cb098b0d207e8ff7992f25898 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Tue, 7 Nov 2023 21:01:56 +0000 Subject: [PATCH] Add CentOS Stream test workflow. --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c562862..bfb630f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: - master jobs: - build: + ubuntu: runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -35,3 +35,14 @@ jobs: ${{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