Test both MIT KRB5 and Heimdal.

This commit is contained in:
Darren Tucker 2021-10-22 22:54:33 +11:00
parent 22b2681d88
commit 4ae39cada2
3 changed files with 7 additions and 4 deletions

2
.github/configs vendored
View File

@ -56,7 +56,7 @@ case "$config" in
tcmalloc) tcmalloc)
CONFIGFLAGS="--with-ldflags=-ltcmalloc" CONFIGFLAGS="--with-ldflags=-ltcmalloc"
;; ;;
kerberos5) krb5|heimdal)
CONFIGFLAGS="--with-kerberos5" CONFIGFLAGS="--with-kerberos5"
;; ;;
libedit) libedit)

6
.github/setup_ci.sh vendored
View File

@ -41,9 +41,11 @@ for TARGET in $TARGETS; do
compiler=$(echo $TARGET | sed 's/-Werror//') compiler=$(echo $TARGET | sed 's/-Werror//')
PACKAGES="$PACKAGES $compiler" PACKAGES="$PACKAGES $compiler"
;; ;;
kerberos5) krb5)
PACKAGES="$PACKAGES libkrb5-dev"
;;
heimdal)
PACKAGES="$PACKAGES heimdal-dev" PACKAGES="$PACKAGES heimdal-dev"
#PACKAGES="$PACKAGES libkrb5-dev"
;; ;;
sk) sk)
INSTALL_FIDO_PPA="yes" INSTALL_FIDO_PPA="yes"

View File

@ -57,7 +57,8 @@ jobs:
- { os: ubuntu-latest, configs: openssl-1.1.1_stable } # stable branch - { os: ubuntu-latest, configs: openssl-1.1.1_stable } # stable branch
- { os: ubuntu-latest, configs: openssl-3.0 } # stable branch - { os: ubuntu-latest, configs: openssl-3.0 } # stable branch
- { os: ubuntu-18.04, configs: pam } - { os: ubuntu-18.04, configs: pam }
- { os: ubuntu-18.04, configs: kerberos5 } - { os: ubuntu-18.04, configs: krb5 }
- { os: ubuntu-18.04, configs: heimdal }
- { os: ubuntu-18.04, configs: libedit } - { os: ubuntu-18.04, configs: libedit }
- { os: ubuntu-18.04, configs: sk } - { os: ubuntu-18.04, configs: sk }
- { os: ubuntu-18.04, configs: selinux } - { os: ubuntu-18.04, configs: selinux }