Skip to content

Commit

Permalink
Add CentOS Stream test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
notroj committed Nov 7, 2023
1 parent 97b2dd4 commit d6f6b6e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- master

jobs:
build:
ubuntu:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -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

0 comments on commit d6f6b6e

Please sign in to comment.