mirror of git://anongit.mindrot.org/openssh.git
Test both MIT KRB5 and Heimdal.
This commit is contained in:
parent
22b2681d88
commit
4ae39cada2
|
@ -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)
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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 }
|
||||||
|
|
Loading…
Reference in New Issue